Add 'rm -f .testrepository/times.dbm' command in testenv

Running py2* post py3* tests results in error. Add
'rm -f .testrepository/times.dbm' command in testenv to
resolve this.

Change-Id: I892d8b2e5a5488418eebf17129828aaf854b9f14
This commit is contained in:
rajat29 2017-04-25 10:59:48 +05:30
parent 1584b764d6
commit c20028d331
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ deps = -r{toxinidir}/requirements.txt
whitelist_externals = find
commands =
find . -type f -name "*.pyc" -delete
rm -f .testrepository/times.dbm
python setup.py testr --slowest --testr-args='{posargs}'
[testenv:pep8]