Merge "Add tox entry for py35 tests"

This commit is contained in:
Jenkins 2016-08-29 20:08:23 +00:00 committed by Gerrit Code Review
commit c376d32a14
1 changed files with 11 additions and 2 deletions

13
tox.ini
View File

@ -1,5 +1,5 @@
[tox]
envlist = py34,py27,pep8,checkbuild,checklinks
envlist = py35,py34,py27,pep8,checkbuild,checklinks
minversion = 1.6
skipsdist = True
@ -26,11 +26,20 @@ commands =
bash -c "find trove -type f -regex '.*\.pot?' -print0 | \
xargs -0 -n 1 msgfmt --check-format -o /dev/null"
[testenv:py34]
[py3base]
commands = rm -f .testrepository/times.dbm
find ./trove -type f -name "*.pyc" -delete
ostestr --blacklist_file=blacklist-py3.txt --serial
whitelist_externals = rm
find
[testenv:py34]
commands = {[py3base]commands}
whitelist_externals = {[py3base]whitelist_externals}
[testenv:py35]
commands = {[py3base]commands}
whitelist_externals = {[py3base]whitelist_externals}
[testenv:debug]
commands = oslo_debug_helper {posargs}