fix: pin mock to 1.0.1

- pinning mock to 1.0.1 under tests/test-requirements.txt did not work,
  probably because some other framework has a dependency on it, putting
  it in the last line did not work either.

Change-Id: I67fd7d170fb653f18bb5b90fbffab202b7c2bc67
This commit is contained in:
Sriram Madapusi Vasudevan 2015-07-10 11:06:22 -04:00
parent 36003251ac
commit 93eaad3e58
1 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,8 @@ setenv = VIRTUAL_ENV={envdir}
PYTHONDONTWRITEBYTECODE=1
deps = -r{toxinidir}/requirements/requirements.txt
-r{toxinidir}/tests/test-requirements.txt
commands = pip install git+https://github.com/stackforge/opencafe.git#egg=cafe
commands = pip install -U mock==1.0.1
pip install git+https://github.com/stackforge/opencafe.git#egg=cafe
nosetests {posargs:--exclude=api --exclude=endtoend --nologcapture}