tox: build py3 (#36515)

This commit is contained in:
Frédéric Péters 2019-11-12 14:20:07 +01:00
parent a87a181371
commit cb17e126b7
2 changed files with 9 additions and 3 deletions

7
Jenkinsfile vendored
View File

@ -4,9 +4,14 @@ pipeline {
agent any
options { disableConcurrentBuilds() }
stages {
stage('Unit Tests (Python 2)') {
steps {
sh 'tox -r -e py2'
}
}
stage('Unit Tests') {
steps {
sh 'tox -r'
sh 'tox -r -e py3-pylint-coverage'
}
post {
always {

View File

@ -1,6 +1,6 @@
[tox]
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/wcs/{env:BRANCH_NAME:}
envlist = py2-pylint-coverage
envlist = py3-pylint-coverage,py2
[testenv]
sitepackages = true
@ -29,6 +29,7 @@ deps =
django-ratelimit<3
pyproj
pylint<1.8
py3: Quixote>=3.0
commands =
py.test {env:COVERAGE:} {posargs:tests/}
py.test -v {env:COVERAGE:} {posargs:tests/}
pylint: ./pylint.sh wcs/