Skip to content

Commit

Permalink
skip multiprocess tests on osx
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Jun 23, 2024
1 parent e85af60 commit 2302326
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyftpdlib/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,8 @@ def stop(self):
assert_free_resources(self.parent_pid)


if POSIX:
# XXX: multiprocessing does not work on OSX on GHA
if POSIX and not (OSX and GITHUB_ACTIONS):

class MProcessTestFTPd(multiprocessing.Process):
"""Same as above but using a sub process instead."""
Expand Down

0 comments on commit 2302326

Please sign in to comment.