summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2014-12-05 20:29:48 -0500
committerDonald Stufft <donald@stufft.io>2014-12-05 20:29:48 -0500
commite20f3e4c0e90c98114fff7d4e9a47631cbb330a2 (patch)
tree18c2c97e6105748f4653c5506c4be877d18049f5 /tox.ini
parent410f0c998cf4e9d6abe2546e65a01c8403a1f7a4 (diff)
downloadpy-bcrypt-git-e20f3e4c0e90c98114fff7d4e9a47631cbb330a2.tar.gz
Switch to using tox to run our tests and expect PyPy to pass
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini10
1 files changed, 10 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..268ecb9
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,10 @@
+[tox]
+envlist = py26,py27,pypy,py32,py33,py34
+
+[testenv]
+# If you add a new dep here you probably need to add it in setup.py as well
+deps =
+ mock
+ pytest
+commands =
+ py.test --capture no --strict {posargs}