Duncan Bellamy 79ebb5fbed testing/py3-cherrypy: add missing dependencies
* fixes #12150
* reworked from !15083
* part of #12404
* part of #11104
* enable tests
* take over maintainership
2021-10-07 20:13:39 +00:00

32 lines
1.1 KiB
Diff

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()