We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7b0db6 commit bba5121Copy full SHA for bba5121
pdoc/test/__init__.py
@@ -111,6 +111,10 @@ class CliTest(unittest.TestCase):
111
]
112
PUBLIC_FILES = [f for f in ALL_FILES if '/_' not in f]
113
114
+ if os.name == 'nt':
115
+ ALL_FILES = [i.replace('/', '\\') for i in ALL_FILES]
116
+ PUBLIC_FILES = [i.replace('/', '\\') for i in PUBLIC_FILES]
117
+
118
def setUp(self):
119
pdoc.reset()
120
@@ -1102,6 +1106,7 @@ def test_latex_math(self):
1102
1106
self.assertEqual(html, expected)
1103
1107
1104
1108
1109
+@unittest.skipIf('win' in sys.platform, "signal.SIGALRM doesn't work on Windos")
1105
1110
class HttpTest(unittest.TestCase):
1111
"""
1112
Unit tests for the HTTP server functionality.
0 commit comments