From 516127040eae162add5dcffe80d0d55be80a62d4 Mon Sep 17 00:00:00 2001 From: jiangpengcheng Date: Tue, 23 May 2017 06:01:49 -0400 Subject: [PATCH] Tests: remove .testrepository/times.dbm in tox.ini Existance of this file causes py3* tests to fail if run after py27. This patch adds cleaning up of this file before running py3* tests. Closes-Bug: #1229445 Change-Id: I9e908f2520c39c2f97fc5a841d604a0cf4406621 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index ddef04826..d47522aa7 100644 --- a/tox.ini +++ b/tox.ini @@ -18,6 +18,7 @@ deps = -r{toxinidir}/requirements.txt commands = find . -type f -name "*.py[c|o]" -delete + rm -rf .testrepository/times.dbm bash tools/pretty_tox.sh '{posargs}'