Skip to content

Commit

Permalink
Revert "[tools] Disable some multiprocessing tests (#24892)"
Browse files Browse the repository at this point in the history
This reverts commit b2579d4.
  • Loading branch information
Hexcles committed Dec 15, 2020
1 parent 0943659 commit bcb615d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions tools/serve/test_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import Queue as queue # noqa: N813
except ImportError:
import queue
import sys
import tempfile
import threading

Expand Down Expand Up @@ -46,8 +45,6 @@ def tempfile_name():
os.remove(name)


@pytest.mark.skipif(sys.version_info >= (3, 8) and sys.platform == 'darwin',
reason="multiprocessing test hangs in Python 3.8 on macOS (#24880)")
def test_subprocess_exit(server_subprocesses, tempfile_name):
timeout = 30

Expand Down
4 changes: 0 additions & 4 deletions tools/wpt/tests/test_wpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,6 @@ def test_run_zero_tests():

@pytest.mark.slow
@pytest.mark.remote_network
@pytest.mark.skipif(sys.version_info >= (3, 8) and sys.platform == 'darwin',
reason="multiprocessing test hangs in Python 3.8 on macOS (#24880)")
def test_run_failing_test():
"""Failing tests should be reported with a non-zero exit status unless the
`--no-fail-on-unexpected` option has been specified."""
Expand All @@ -208,8 +206,6 @@ def test_run_failing_test():

@pytest.mark.slow
@pytest.mark.remote_network
@pytest.mark.skipif(sys.version_info >= (3, 8) and sys.platform == 'darwin',
reason="multiprocessing test hangs in Python 3.8 on macOS (#24880)")
def test_run_verify_unstable(temp_test):
"""Unstable tests should be reported with a non-zero exit status. Stable
tests should be reported with a zero exit status."""
Expand Down
3 changes: 0 additions & 3 deletions tools/wptserve/tests/functional/test_stash.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import sys
import unittest
import uuid

Expand All @@ -10,8 +9,6 @@
from .base import TestUsingServer


@pytest.mark.skipif(sys.version_info >= (3, 8) and sys.platform == 'darwin',
reason="multiprocessing test hangs in Python 3.8 on macOS (#24880)")
class TestResponseSetCookie(TestUsingServer):
def run(self, result=None):
with StashServer(None, authkey=str(uuid.uuid4())):
Expand Down

0 comments on commit bcb615d

Please sign in to comment.