summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSusan Tan <onceuponatimeforever@gmail.com>2016-06-03 11:38:04 -0700
committerIan Lee <IanLee1521@gmail.com>2016-06-06 16:08:23 -0700
commit5be92ad0bf9c1ea6276a6e8614e2ef47e912d687 (patch)
tree1e4abad3afc6db9def6b573babbec04a98fa2e33
parent7ffd648b73d289598779e6d81c2d346a36b99eb1 (diff)
downloadpep8-5be92ad0bf9c1ea6276a6e8614e2ef47e912d687.tar.gz
Add test-requirements.txt with basic test packages
-rw-r--r--docs/developer.rst7
-rw-r--r--test-requirements.txt1
2 files changed, 8 insertions, 0 deletions
diff --git a/docs/developer.rst b/docs/developer.rst
index f18fe62..054c011 100644
--- a/docs/developer.rst
+++ b/docs/developer.rst
@@ -103,6 +103,13 @@ Then be sure to pass the tests::
When contributing to pycodestyle, please observe our `Code of Conduct`_.
+To run the Travis CI tests, you'll have to create a build the pycodestyle package using tox:
+
+ $ pip install -r test-requirements.txt
+ $ tox
+
+All the tests should pass.
+
.. _PEP 8: http://www.python.org/dev/peps/pep-0008/
.. _Code of Conduct: http://meta.pycqa.org/en/latest/code-of-conduct.html
diff --git a/test-requirements.txt b/test-requirements.txt
new file mode 100644
index 0000000..5ef8c7b
--- /dev/null
+++ b/test-requirements.txt
@@ -0,0 +1 @@
+tox>=2.3.1 \ No newline at end of file