From 6f8e4fe99dca2d4de2d8579a9463fd40747c71ab Mon Sep 17 00:00:00 2001 From: Brant Knudson Date: Mon, 19 May 2014 16:57:05 -0500 Subject: [PATCH] Allow cover tests to work `tox -e cover` would fail with ERROR: InvocationError: could not find executable 'OSLO_LOCK_PATH=/tmp/' Change-Id: I6208847f25a47ff3d4e7704249a02baecaac2d7e --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 06b2516c..799367ef 100644 --- a/tox.ini +++ b/tox.ini @@ -24,7 +24,7 @@ commands = flake8 commands = {posargs} [testenv:cover] -commands = OSLO_LOCK_PATH=/tmp/ python setup.py testr --coverage --testr-args='{posargs}' +commands = python setup.py testr --coverage --testr-args='{posargs}' [flake8] # H803 skipped on purpose per list discussion.