diff options
author | Chandan Singh <csingh43@bloomberg.net> | 2019-12-24 11:55:57 +0000 |
---|---|---|
committer | Chandan Singh <csingh43@bloomberg.net> | 2019-12-24 16:35:33 +0000 |
commit | 7fa5ccb60a6ec0c38da2bfde0118ef531bfd3697 (patch) | |
tree | 8e9c32e00db1de892d4552849201566f98c6fbcf /.gitlab-ci.yml | |
parent | 55bf729c3ec2edbef97383ce15a6f7013136d3e7 (diff) | |
download | buildstream-7fa5ccb60a6ec0c38da2bfde0118ef531bfd3697.tar.gz |
.gitlab-ci.yml: Fix command for randomized external tests
The command for running external tests only had the `-external`
qualifier for one of the tests, so it ended up duplicating the first
command for the first two environments.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7025a9f7a..e06984c46 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -398,7 +398,7 @@ overnight-randomized: # Don't run tests multiprocessed here, the randomized order doesn't like that - su buildstream -c "tox -e py35-randomized,py36-randomized,py37-randomized -- --color=yes --integration" - - su buildstream -c "tox -e py35-randomized,py36-randomized,py37-randomized-external -- --color=yes --integration" + - su buildstream -c "tox -e py35-randomized-external,py36-randomized-external,py37-randomized-external -- --color=yes --integration" # We need to override the exclusion from the template in order to run on schedules except: [] |