summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kanakarakis <ivan.kanak@gmail.com>2018-06-29 12:05:28 +0300
committerIvan Kanakarakis <ivan.kanak@gmail.com>2018-06-29 12:08:05 +0300
commit252588dbd41336cd454383a6a0b7841101a802f4 (patch)
tree614704a2b4af1ccc1032f95303a1d5a517184757
parent9f45cb4e004e99219678e46a849d625395142918 (diff)
downloadpysaml2-252588dbd41336cd454383a6a0b7841101a802f4.tar.gz
Rename test requirements file
Signed-off-by: Ivan Kanakarakis <ivan.kanak@gmail.com>
-rw-r--r--README.rst2
-rw-r--r--tests/test-requirements.txt (renamed from tests/test_requirements.txt)0
-rw-r--r--tox.ini2
3 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 81acafcc..d0111344 100644
--- a/README.rst
+++ b/README.rst
@@ -31,7 +31,7 @@ PySAML2 uses the `pytest <http://doc.pytest.org/en/latest/>`_ framework for
testing. To run the tests on your system's version of python
1. Create and activate a `virtualenv <https://virtualenv.pypa.io/en/stable/>`_.
-2. Inside the virtualenv, install the dependencies needed for testing :code:`pip install -r tests/test_requirements.txt`
+2. Inside the virtualenv, install the dependencies needed for testing :code:`pip install -r tests/test-requirements.txt`
3. Run the tests :code:`py.test tests`
To run tests in multiple python environments, you can use
diff --git a/tests/test_requirements.txt b/tests/test-requirements.txt
index 33301079..33301079 100644
--- a/tests/test_requirements.txt
+++ b/tests/test-requirements.txt
diff --git a/tox.ini b/tox.ini
index 0589dc16..c626112b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,5 +2,5 @@
envlist = py27,py34,py35,py36,pypy,pypy3
[testenv]
-deps = -rtests/test_requirements.txt
+deps = -r tests/test-requirements.txt
commands = py.test {posargs:tests/}