Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Martinez <jmartinez@gitlab.com>2021-06-28 10:17:57 +0300
committerJaime Martinez <jmartinez@gitlab.com>2021-06-28 10:17:57 +0300
commit00ac7bf1e1046baae2b4878b77f8c18c5311e5d1 (patch)
tree7b022e300202a4cc43a70808e0c000885df985ec
parentc767eae57800a841bbb03947c31cacdfc35b96fb (diff)
only run one test
-rw-r--r--.gitlab/ci/test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab/ci/test.yml b/.gitlab/ci/test.yml
index e1321928..5b116a12 100644
--- a/.gitlab/ci/test.yml
+++ b/.gitlab/ci/test.yml
@@ -19,13 +19,13 @@
extends: .tests-common
script:
- echo "Running just the acceptance tests daemonized (inplace)...."
- - TEST_DAEMONIZE=inplace make acceptance
+ - TEST_DAEMONIZE=inplace make acceptance ARGS='-run TestCustom404'
.tests-acceptance-tmpdir:
extends: .tests-common
script:
- echo "Running just the acceptance tests daemonized (tmpdir)...."
- - TEST_DAEMONIZE=tmpdir make acceptance
+ - TEST_DAEMONIZE=tmpdir make acceptance ARGS='-run TestCustom404'
- make junit-report
test:1.14: