From 28c117abe0b332cec0eb4d67c14a0091745e9d1f Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Fri, 2 Nov 2018 12:31:55 -0700 Subject: [PATCH] If ResourceWarning is specified in pytest.ini, tests fail on Python3. We should be catching all of them, and they usually fail to successfully error anyway, so this just means we get sligthly worse error messages when they do occur. --- pytest.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 7d0b19223..c35e0de7c 100644 --- a/pytest.ini +++ b/pytest.ini @@ -3,4 +3,3 @@ addopts = --numprocesses auto --pyargs # ResourceWarnings are ignored as errors, since they're raised at close filterwarnings = error - always::ResourceWarning