summaryrefslogtreecommitdiff
path: root/cherrypy
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-02-19 14:12:03 -0500
committerJason R. Coombs <jaraco@jaraco.com>2018-02-19 14:12:03 -0500
commite0bf8f7df483e08007355050c8776d48ad10d686 (patch)
tree7a5213538493146a2db664f486c0d1845e332a89 /cherrypy
parent7221ebf9ddf5060ed9b2aa86e66b46aafb57c12f (diff)
downloadcherrypy-git-e0bf8f7df483e08007355050c8776d48ad10d686.tar.gz
Mark test as xfail on Python 3.7. Ref #1693.
Diffstat (limited to 'cherrypy')
-rw-r--r--cherrypy/test/test_states.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/cherrypy/test/test_states.py b/cherrypy/test/test_states.py
index 09a5ec7e..9c102ad4 100644
--- a/cherrypy/test/test_states.py
+++ b/cherrypy/test/test_states.py
@@ -222,6 +222,10 @@ class ServerStateTests(helper.CPWebCase):
self.assertEqual(db_connection.running, False)
self.assertEqual(len(db_connection.threads), 0)
+ @pytest.mark.xfail(
+ 'sys.version_info > (3, 7)',
+ reason="https://github.com/cherrypy/cherrypy/issues/1693",
+ )
def test_4_Autoreload(self):
# If test_3 has not been executed, the server won't be stopped,
# so we'll have to do it.