Allow cover tests to work

`tox -e cover` would fail with

 ERROR: InvocationError: could not find executable
 'OSLO_LOCK_PATH=/tmp/'

Change-Id: I6208847f25a47ff3d4e7704249a02baecaac2d7e
This commit is contained in:
Brant Knudson 2014-05-19 16:57:05 -05:00
parent 38febeff32
commit 6f8e4fe99d
1 changed files with 1 additions and 1 deletions

View File

@ -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.