File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 11import os
2+ import platform
23import secrets
34import signal
45import subprocess
@@ -286,6 +287,9 @@ def run(self):
286287 return conn .getresponse ()
287288
288289
290+ @pytest .mark .skipif (
291+ platform .python_implementation () == "PyPy" , reason = "slow on Github CI"
292+ )
289293@pytest .mark .parametrize ("worker_class" , TEST_TOLERATES_BAD_BOOT )
290294def test_process_request_after_fixing_syntax_error (worker_class ):
291295 # 1. start up the server with invalid app
@@ -373,6 +377,9 @@ def test_process_request_after_fixing_syntax_error(worker_class):
373377 )
374378
375379
380+ @pytest .mark .skipif (
381+ platform .python_implementation () == "PyPy" , reason = "slow on Github CI"
382+ )
376383@pytest .mark .parametrize ("worker_class" , TEST_TOLERATES_BAD_RELOAD )
377384def test_process_shutdown_cleanly_after_inserting_syntax_error (worker_class ):
378385 # 1. start with valid application
You can’t perform that action at this time.
0 commit comments