diff --git a/pyftpdlib/test/__init__.py b/pyftpdlib/test/__init__.py index 4010000f..d6052157 100644 --- a/pyftpdlib/test/__init__.py +++ b/pyftpdlib/test/__init__.py @@ -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."""