Added obj file to delete at testenv

Get added the obj file at testenv of py27 and py35 to delete the
pyc and pyo files.

Change-Id: I0ce590ca00e13a1423ecc1f9dd0c6bd0e5ece47b
This commit is contained in:
Deepak Jon 2017-05-04 15:26:46 +05:30
parent c96a10ea24
commit 229e7b1a8a

View File

@ -28,7 +28,7 @@ basepython = python2.7
setenv =
OS_TEST_PATH = ./freezerclient/tests/unit
commands =
find . -type f -name "*.pyc" -delete
find . -type f -name "*.py[c|o]" -delete
python setup.py testr --coverage --testr-args="{posargs}"
coverage report -m
rm -f .coverage
@ -39,7 +39,7 @@ basepython = python3.5
setenv =
OS_TEST_PATH = ./freezerclient/tests/unit
commands =
find . -type f -name "*.pyc" -delete
find . -type f -name "*.py[c|o]" -delete
python setup.py testr --coverage --testr-args="{posargs}"
coverage report -m
rm -f .coverage