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>2020-12-08 04:00:22 +0300
committerJaime Martinez <jmartinez@gitlab.com>2020-12-08 04:00:22 +0300
commit6390d9c1f901e91f25e667b44718781f9f5f1f6b (patch)
tree0eaa229402c6d0b4f7e9ab9e4f73e8d88be6d690
parentaf3e5d864eecf3d8495a89dc3cd32d3c808f8ec8 (diff)
Add missing make setup
-rw-r--r--.gitlab/ci/test.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab/ci/test.yml b/.gitlab/ci/test.yml
index 229dd1c3..74d49ee6 100644
--- a/.gitlab/ci/test.yml
+++ b/.gitlab/ci/test.yml
@@ -4,8 +4,6 @@
tags:
- gitlab-org-docker
needs: ['download deps']
- script:
- - make setup
artifacts:
reports:
junit: junit-test-report.xml
@@ -14,12 +12,14 @@
extends: .tests-common
script:
- echo "Running all tests without daemonizing..."
+ - make setup
- make test
- make junit-report
.tests-acceptance-deamon:
extends: .tests-common
script:
+ - make setup
- echo "Running just the acceptance tests daemonized (tmpdir)...."
- TEST_DAEMONIZE=tmpdir make acceptance
- echo "Running just the acceptance tests daemonized (inplace)...."
@@ -58,6 +58,7 @@ race:
cover:
extends: .tests-common
script:
+ - make setup
- make generate-mocks
- make cover
coverage: '/total:.+\(statements\).+\d+\.\d+/'