summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2016-07-20 14:13:16 -0700
committerTim Burke <tim.burke@gmail.com>2016-07-20 14:13:16 -0700
commita2a041b7da2850c82df195ab36450a8aee8129b5 (patch)
tree41b854b02229a9cc3d6830a6221f778bc16d0a53 /tox.ini
downloadpastedeploy-git-a2a041b7da2850c82df195ab36450a8aee8129b5.tar.gz
Fix string-formatting args when raising LookupError
Previously, this would trigger TypeError: not enough arguments for format string
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini11
1 files changed, 11 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..18af92a
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,11 @@
+[tox]
+envlist = py26, py27, py33, py34, py35, pypy
+
+[testenv]
+deps =
+ # Paste works on Python 3 since Paste 2.0
+ Paste
+ pytest
+ pytest-cov
+commands =
+ py.test {posargs}