diff --git a/README.rst b/README.rst index c86fcff..62782fa 100644 --- a/README.rst +++ b/README.rst @@ -48,6 +48,7 @@ To run for specific version, setup a ``virtual environment``:: virtualenv -p python3 py3 source py3/bin/active + pip install -r requirements.txt make test To run for ``python 2.7`` and ``3.4`` assuming you have them installed:: diff --git a/tox.ini b/tox.ini index 2712869..b78b584 100644 --- a/tox.ini +++ b/tox.ini @@ -4,11 +4,6 @@ envlist = py27, py34 [testenv] setenv = PYTHONHASHSEED = 0 -deps = - nose - coverage - mock - vcrpy - pyyaml +deps = -rrequirements.txt commands = nosetests --verbosity 1 --with-coverage --cover-package=steam