jenkinsfile: do not run coverage for 1.11

This commit is contained in:
Frédéric Péters 2018-04-25 22:54:36 +02:00
parent 7f86e9c314
commit 61b4cb431a
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -13,7 +13,7 @@ pipeline {
stage('Python 3') {
agent any
steps {
sh 'tox -r -e py3-django111 -- --junitxml=test_results.xml --cov-report xml --cov=bidon/ tests/'
sh 'tox -r -e py3-django111 -- tests/'
}
}
}