From 3f7b399cdf94a59f7d9b99bfe2ac70cf14fa3484 Mon Sep 17 00:00:00 2001 From: rajat29 Date: Wed, 26 Apr 2017 11:56:48 +0530 Subject: [PATCH] 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. Closes-Bug: #1565928 Change-Id: I9f29c187ff0e2b6ef46c0b8e28e2aff3f36949b8 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index d9b5dd7b..425fdddd 100644 --- a/tox.ini +++ b/tox.ini @@ -13,6 +13,7 @@ deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = /usr/bin/find . -type f -name "*.py[co]" -delete + rm -f .testrepository/times.dbm python setup.py testr --testr-args='{posargs}' [testenv:debug]