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-03-25 07:45:08 +0300
committerJaime Martinez <jmartinez@gitlab.com>2021-03-25 07:45:08 +0300
commit33723f8a85871797b6f38ab0340437a9b635f917 (patch)
tree9ff99365659f0e47673c9c8f5cd60610e88936f5 /.gitlab
parent575fec0d865d576c295aa7263d190744bd0a0328 (diff)
Remove .GOPATH symlinks
Simplifies Makefiles to not use `.GOPATH` symlink. Updates `test.yaml` to reuse the Go cache in between jobs instead of removing and downloading all the dependencies for every job. Changelog: other
Diffstat (limited to '.gitlab')
-rw-r--r--.gitlab/ci/test.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.gitlab/ci/test.yml b/.gitlab/ci/test.yml
index 74d49ee6..609c7d7d 100644
--- a/.gitlab/ci/test.yml
+++ b/.gitlab/ci/test.yml
@@ -11,15 +11,13 @@
.tests-unit:
extends: .tests-common
script:
- - echo "Running all tests without daemonizing..."
- - make setup
- - make test
+ - echo "Running all unit tests without daemonizing..."
+ - make test ARGS='-short'
- 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,7 +56,6 @@ race:
cover:
extends: .tests-common
script:
- - make setup
- make generate-mocks
- make cover
coverage: '/total:.+\(statements\).+\d+\.\d+/'