Skip to content

Commit

Permalink
Remove test skip, no longer relevant with Python 3.8 minimum.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Apr 2, 2024
1 parent 1899770 commit 33ad6a5
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/test_multiprocess.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import multiprocessing
import platform
import sys

import pytest

Expand All @@ -16,11 +15,6 @@ def subprocess_get():
platform.system() == 'Linux',
reason="#410: keyring discovery fails intermittently",
),
pytest.mark.skipif(
# always skip as it crashes the interpreter
sys.version_info < (3, 8) and platform.system() == 'Darwin',
reason="#281, #494: Prior to 3.8, multiprocess invocation fails",
),
]


Expand Down

0 comments on commit 33ad6a5

Please sign in to comment.