From 8830b8d0828752c8a8f54f13b917c33e4a5a753b Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 18 Aug 2019 21:32:52 +0200 Subject: [PATCH] gitlab-ci: only run a single test Unfortunately the full test suite seems to run out of memory on the GitLab CI runner. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2073da38..e94c3cd5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ stages: Run tests: stage: test script: - - nix-shell tests -A run.all + - nix-shell tests -A run.files-text only: - master