mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-25 16:31:24 +02:00
* fixes #12150 * reworked from !15083 * part of #12404 * part of #11104 * enable tests * take over maintainership
32 lines
1.1 KiB
Diff
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()
|