Skip to content

Commit

Permalink
Skip multiprocessing test on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
morganjwilliams committed Jul 4, 2023
1 parent 3b3ed84 commit fd7bdd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/util/util_multip.py
Expand Up @@ -48,8 +48,8 @@ def test_construct(self):
self.assertEqual(result, test_kwargs)


@unittest.skipUnless(
platform.system() != "Windows", "Bug with multiprocessing testing on Windows"
@unittest.skipIf(
platform.system() in ["Windows", 'Darwin'], "Bug with multiprocessing testing on Windows"
)
class TestMultiprocess(unittest.TestCase):
"""Tests the multiprocess utility function."""
Expand Down

0 comments on commit fd7bdd2

Please sign in to comment.