diff options
author | Jürg Billeter <j@bitron.ch> | 2020-04-02 08:00:07 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2020-04-02 08:06:23 +0200 |
commit | 3ed61eed3b83e909dd0514e64ade6028b52f176c (patch) | |
tree | fb011fe8cb3791e8e27e75a781fe333e166eda39 /.gitlab-ci.yml | |
parent | 711eb3b9b1c45857dc35dedf1502093773cd0489 (diff) | |
download | buildstream-3ed61eed3b83e909dd0514e64ade6028b52f176c.tar.gz |
.gitlab-ci.yml: Do not use Python 3.5 tox environments
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1f26d0df1..b6dd45ed9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,7 +29,7 @@ variables: INTEGRATION_CACHE: "${CI_PROJECT_DIR}/cache/integration-cache" PYTEST_ARGS: "--color=yes --integration -n 2" TEST_COMMAND: "tox -- ${PYTEST_ARGS}" - TOXENV: py35, py36, py37, py38, py35-plugins, py36-plugins, py37-plugins, py38-plugins + TOXENV: py36, py37, py38, py36-plugins, py37-plugins, py38-plugins COVERAGE_PREFIX: "${CI_JOB_NAME}." @@ -231,7 +231,7 @@ tests-no-usedevelop: image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:31-${DOCKER_IMAGE_VERSION} <<: *tests variables: - TOXENV: py35-nocover,py36-nocover,py37-nocover,py38-nocover + TOXENV: py36-nocover,py37-nocover,py38-nocover # Run type checkers @@ -396,8 +396,8 @@ overnight-randomized: - chown -R buildstream:buildstream . # Don't run tests multiprocessed here, the randomized order doesn't like that - - su buildstream -c "tox -e py35-randomized,py36-randomized,py37-randomized,py38-randomized -- --color=yes --integration" - - su buildstream -c "tox -e py35-randomized-external,py36-randomized-external,py37-randomized-external,py38-randomized-external -- --color=yes --integration" + - su buildstream -c "tox -e py36-randomized,py37-randomized,py38-randomized -- --color=yes --integration" + - su buildstream -c "tox -e py36-randomized-external,py37-randomized-external,py38-randomized-external -- --color=yes --integration" # We need to override the exclusion from the template in order to run on schedules except: [] |