From 41bf1acc380ddddf254deab38fe22e06c45c5747 Mon Sep 17 00:00:00 2001 From: Mahito OGURA Date: Fri, 12 Jun 2015 13:45:57 +0900 Subject: [PATCH] Change "find" 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: Icb86ff2294ee79e500b98ef79e458f0302dc295e Closes-bug: 1464495 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 8e3bdb64..87bf6475 100644 --- a/tox.ini +++ b/tox.ini @@ -13,8 +13,8 @@ deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt install_command = pip install -U {opts} {packages} usedevelop = True -commands = - find . -type f -name "*.pyc" -delete +commands = + /usr/bin/find . -type f -name "*.pyc" -delete python setup.py testr --slowest --testr-args='{posargs}' distribute = false basepython = python2.7