Added py35 environment configuration to tox.ini

Change-Id: I02bc1ad73014a18ef7c6e353b1d3adb0ac0fb12e
This commit is contained in:
Saad Zaher 2016-11-17 14:52:07 +00:00
parent 13e49dcaf2
commit 0ac8349066
1 changed files with 11 additions and 1 deletions

12
tox.ini
View File

@ -44,7 +44,6 @@ commands =
rm -f .coverage
rm -rf .testrepository
[testenv:py34]
basepython = python3.4
setenv = OS_PATH_TEST = ./freezer_api/tests/unit
@ -56,6 +55,17 @@ commands =
rm -f .coverage
rm -rf .testrepository
[testenv:py35]
basepython = python3.5
setenv = OS_PATH_TEST = ./freezer_api/tests/unit
commands =
find . -type f -name "*.py[c|o]" -delete
rm -rf .testrepository
python setup.py test --coverage --coverage-package-name freezer_api --testr-args="{posargs}"
coverage report -m
rm -f .coverage
rm -rf .testrepository
[testenv:venv]
commands = {posargs}