This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
33# this script is run by buildkite in a plain `xenial` container; it installs the
4- # minimal requirements for tox and hands over to the py35 -old tox environment.
4+ # minimal requirements for tox and hands over to the py3 -old tox environment.
55
66set -ex
77
88apt-get update
9- apt-get install -y python3.5 python3.5 -dev python3-pip libxml2-dev libxslt-dev xmlsec1 zlib1g-dev tox
9+ apt-get install -y python3 python3-dev python3-pip libxml2-dev libxslt-dev xmlsec1 zlib1g-dev tox
1010
1111export LANG=" C.UTF-8"
1212
1313# Prevent virtualenv from auto-updating pip to an incompatible version
1414export VIRTUALENV_NO_DOWNLOAD=1
1515
16- exec tox -e py35 -old,combine
16+ exec tox -e py3 -old,combine
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ commands =
7474 # we use "env" rather than putting a value in `setenv` so that it is not
7575 # inherited by other tox environments.
7676 #
77- # keep this in sync with the copy in `testenv:py35 -old`.
77+ # keep this in sync with the copy in `testenv:py3 -old`.
7878 #
7979 /usr/bin/env COVERAGE_PROCESS_START ={toxinidir}/.coveragerc " {envbindir}/trial" {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:}
8080
@@ -103,8 +103,9 @@ usedevelop=true
103103
104104# A test suite for the oldest supported versions of Python libraries, to catch
105105# any uses of APIs not available in them.
106- [testenv:py35-old]
107- skip_install =True
106+ [testenv:py3-old]
107+ skip_install = true
108+ usedevelop = false
108109deps =
109110 # Old automat version for Twisted
110111 Automat == 0.3.0
You can’t perform that action at this time.
0 commit comments