summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2017-05-18 21:54:57 +0100
committerStephen Finucane <stephen@that.guru>2017-05-18 21:57:10 +0100
commit349b737b62e8cc903bda49866d69a277547f9210 (patch)
tree87a13081f1e80076357f48216678f425e0fe48d2 /tox.ini
parent2c10956e1b9cb02cd6892773df622f9c6c153994 (diff)
downloadpatchwork-349b737b62e8cc903bda49866d69a277547f9210.tar
patchwork-349b737b62e8cc903bda49866d69a277547f9210.tar.gz
tox: Don't use exceptions - just warn
It seems Django uses deprecated items in Python 3.x, meaning we can't use this. Signed-off-by: Stephen Finucane <stephen@that.guru> Fixes: 9db5cd0 ("tox: Turn deprecation notices into warnings")
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 1023c0d..fbcf9b3 100644
--- a/tox.ini
+++ b/tox.ini
@@ -26,7 +26,7 @@ passenv =
PW_TEST_DB_PORT DISPLAY SELENIUM_BROWSER PW_SKIP_BROWSER_TESTS
DISPLAY HOME XAUTHORITY
commands =
- python -Werror {toxinidir}/manage.py test --noinput \
+ python -Wonce {toxinidir}/manage.py test --noinput \
--liveserver=localhost:9000-9200 '{posargs:patchwork}'
[testenv:bashate]