From 2cb36cba737df5cb10719b61db1f69951aa7510c Mon Sep 17 00:00:00 2001 From: Mike Fedosin Date: Sun, 9 Jul 2017 16:42:24 +0300 Subject: [PATCH] Fix tox Now 'tox' command fails because it tries to remove .testrepository as a regular file, but it's a directory. Change-Id: I1be468d6074049b7d40610c10904e9795a3759d5 Closes-bug: #1703205 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7d365b39b..b05caa27b 100644 --- a/tox.ini +++ b/tox.ini @@ -12,7 +12,7 @@ setenv = VIRTUAL_ENV={envdir} passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY deps = -r{toxinidir}/test-requirements.txt commands = - rm -f .testrepository + rm -f .testrepository/times.dbm find . -type f -name "*.pyc" -delete python setup.py testr --slowest --testr-args='{posargs}' whitelist_externals =