Change "rm" command path in tox.ini

tox command shows WARNING message as follow.
"WARNING:test command found but not installed in testenv"
If we use "find" command in tox.ini, we should use the full path.
This patch changes fix command path and remove the Warning message.

Change-Id: I6b8f487afc84ef5ecb5e0e4ec865ab0bb2cf2688
This commit is contained in:
Mike Fedosin 2017-06-27 18:15:12 +03:00
parent e228d9eff9
commit 144ca45efb
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ usedevelop = True
install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
deps = -r{toxinidir}/test-requirements.txt
commands =
rm -f .testrepository/times.dbm
/bin/rm -f .testrepository/times.dbm
ostestr --slowest {posargs}
whitelist_externals = bash
passenv = *_proxy *_PROXY