tox: run authentic tests in python3 too (#41237)

This commit is contained in:
Paul Marillonnet 2020-04-01 18:01:38 +02:00
parent ca5168f203
commit abc03c8b8e
2 changed files with 6 additions and 6 deletions

10
Jenkinsfile vendored
View File

@ -14,15 +14,15 @@ pipeline {
utils = new Utils()
utils.publish_coverage('coverage-*.xml')
utils.publish_coverage_native(
'index.html', 'htmlcov-py2-coverage-authentic', 'Coverage authentic tests')
'index.html', 'htmlcov-py3-coverage-authentic', 'Coverage authentic tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-py2-coverage-hobo', 'Coverage hobo tests')
'index.html', 'htmlcov-py3-coverage-hobo', 'Coverage hobo tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-py2-coverage-multipublik', 'Coverage multipublik tests')
'index.html', 'htmlcov-py3-coverage-multipublik', 'Coverage multipublik tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-py2-coverage-multitenant', 'Coverage multitenant tests')
'index.html', 'htmlcov-py3-coverage-multitenant', 'Coverage multitenant tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-py2-coverage-passerelle', 'Coverage passerelle tests')
'index.html', 'htmlcov-py3-coverage-passerelle', 'Coverage passerelle tests')
utils.publish_pylint('pylint.out')
}
mergeJunitResults()

View File

@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/hobo/{env:BRANCH_NAME:}
envlist = py2-coverage-{authentic,hobo,multipublik,multitenant,multitenant-oldstylemiddleware,passerelle,schemas}, py3-coverage-{hobo,multipublik,multitenant,multitenant-oldstylemiddleware,passerelle,schemas}
envlist = {py2,py3-coverage}-{authentic,hobo,multipublik,multitenant,multitenant-oldstylemiddleware,passerelle,schemas}
[testenv]
usedevelop = True