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: Id23d6edfe6980680420141d01f36181194135ca6
This commit is contained in:
M V P Nitesh 2017-04-25 16:48:35 +05:30
parent 68473f5882
commit 8ad9fd110d
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ setenv = VIRTUAL_ENV={envdir}
LC_ALL=C
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
commands = /bin/rm -f .testrepository/times.dbm
python setup.py testr --slowest --testr-args='{posargs}'
distribute = false
[testenv:py27-func-mysql]