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-07-27 04:32:36 +0300
committerJaime Martinez <jmartinez@gitlab.com>2021-07-27 06:44:43 +0300
commit778c290a0eed19a4203c167915d42a223ebc7c5e (patch)
tree1576d2e19f58b673f8c247be7f5a80c02b70e4f2 /.gitlab/ci/test.yml
parentf1b46a30003a9e7576e4af985a2b185041ef1756 (diff)
ci: use gotestsum for running testsuse-new-gotestsum
Changelog: other
Diffstat (limited to '.gitlab/ci/test.yml')
-rw-r--r--.gitlab/ci/test.yml4
1 files changed, 0 insertions, 4 deletions
diff --git a/.gitlab/ci/test.yml b/.gitlab/ci/test.yml
index 9da5b883..654262dd 100644
--- a/.gitlab/ci/test.yml
+++ b/.gitlab/ci/test.yml
@@ -13,21 +13,18 @@
script:
- echo "Running all unit tests without daemonizing..."
- make test ARGS='-short'
- - make junit-report
.tests-acceptance-tmpdir:
extends: .tests-common
script:
- echo "Running just the acceptance tests daemonized (tmpdir)...."
- TEST_DAEMONIZE=tmpdir make acceptance
- - make junit-report
.tests-acceptance-inplace:
extends: .tests-common
script:
- echo "Running just the acceptance tests daemonized (inplace)...."
- TEST_DAEMONIZE=inplace make acceptance
- - make junit-report
test:1.14:
extends: .tests-unit
@@ -72,7 +69,6 @@ race:
- echo "Running race detector"
- make setup
- make race
- - make junit-report
cover:
extends: .tests-common