From 3b23bc5b3c63dfa0aeff54f09796d8e7663f681f Mon Sep 17 00:00:00 2001 From: Eyal Date: Thu, 15 Jun 2017 11:16:06 +0300 Subject: [PATCH] remove tox warnning fix "test command found but not installed in testenv" by adding the full path Change-Id: I6563929013c41121014524e41e43fa43765765a3 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a582d07..845ca1a 100644 --- a/tox.ini +++ b/tox.ini @@ -9,7 +9,7 @@ install_command = pip install -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} deps = -r{toxinidir}/test-requirements.txt -commands = rm -f .testrepository/times.dbm +commands = /bin/rm -f .testrepository/times.dbm python setup.py test --slowest --testr-args='{posargs}' [testenv:pep8]