summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorTristan van Berkom <tristan@codethink.co.uk>2020-09-17 15:51:22 +0900
committerTristan van Berkom <tristan@codethink.co.uk>2020-09-17 16:03:04 +0900
commitaeea7e65c52b3a0b7cdab147e65246de369d77e5 (patch)
tree274813a35a772bd4dab22ca1f135dd2510580610 /.gitlab-ci.yml
parent9c5f0c70127b6c64343ddc973a6ab37f2e98adc6 (diff)
downloadbuildstream-aeea7e65c52b3a0b7cdab147e65246de369d77e5.tar.gz
.gitlab-ci.yml: Fix randomized overnight tests
This was failing because we are trying to run the py38-randomized tox environment in the test, which is not supported. Use py38-randomized-nocover instead.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4e7fb0b36..503195b66 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -354,7 +354,7 @@ overnight-randomized:
- chown -R buildstream:buildstream .
# Don't run tests multiprocessed here, the randomized order doesn't like that
- - su buildstream -c "tox -e py36-randomized,py37-randomized,py38-randomized -- --color=yes --integration"
+ - su buildstream -c "tox -e py36-randomized,py37-randomized,py38-randomized-nocover -- --color=yes --integration"
# We need to override the exclusion from the template in order to run on schedules
except: []