From af5a62dc475e8a97e03ed8de720fdaed918e23ee Mon Sep 17 00:00:00 2001 From: Dai Dang Van Date: Wed, 7 Jun 2017 21:14:03 +0700 Subject: [PATCH] Remove .testrepository/times.dbm When we run tox command, we are facing with test fail problem like: "No module named gdbm". This patch adds cleaning up of this file before running next tests. Change-Id: If906d8c684cce14b62dec718fd22b6903b0ac663 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 679d0a8d..c0eae03f 100644 --- a/tox.ini +++ b/tox.ini @@ -15,6 +15,7 @@ whitelist_externals = sh rm commands = find . -type f -name "*.py[c|o]" -delete + rm -f .testrepository/times.dbm passenv = http_proxy HTTP_PROXY https_proxy