aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-cherrypy/tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/py3-cherrypy/tests.patch')
-rw-r--r--community/py3-cherrypy/tests.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/community/py3-cherrypy/tests.patch b/community/py3-cherrypy/tests.patch
new file mode 100644
index 00000000000..f5bbf28e49c
--- /dev/null
+++ b/community/py3-cherrypy/tests.patch
@@ -0,0 +1,31 @@
+cherrypy tests that also fail
+https://github.com/cherrypy/cherrypy/issues/1896
+
+--- a/cherrypy/test/test_states.py
++++ b/cherrypy/test/test_states.py
+@@ -226,6 +226,7 @@
+ reason='https://github.com/cherrypy/cherrypy/issues/1693',
+ )
+ def test_4_Autoreload(self):
++ self.skip("Auto Reload Fails on Alpine")
+ # If test_3 has not been executed, the server won't be stopped,
+ # so we'll have to do it.
+ if engine.state != engine.states.EXITING:
+@@ -334,6 +335,7 @@
+ p.join()
+
+ def test_SIGHUP_daemonized(self):
++ self.skip("Sighup daemonize Fails on Alpine")
+ # When daemonized, SIGHUP should restart the server.
+ try:
+ from signal import SIGHUP
+--- a/cherrypy/test/test_tools.py
++++ b/cherrypy/test/test_tools.py
+@@ -344,6 +344,7 @@
+ self.assertInBody(expected_msg)
+
+ def testCombinedTools(self):
++ self.skip("test CombinedTools Fails on Alpine")
+ expectedResult = (ntou('Hello,world') +
+ europoundUnicode).encode('utf-8')
+ zbuf = io.BytesIO()