Only skip test on Windows

This commit is contained in:
twangboy 2017-09-26 14:01:03 -06:00
parent ec99a3ce3c
commit 1c01e06097
No known key found for this signature in database
GPG key ID: 93FF3BDEB278C9EB

View file

@ -16,7 +16,7 @@ from tests.support.mock import (
)
@skipIf(not sys.platform.startswith('darwin'), "Mac specific test")
@skipIf(sys.platform.startswith('win'), "Not a Windows test")
class MacPackageTestCase(TestCase, LoaderModuleMockMixin):
def setup_loader_modules(self):
return {macpackage: {}}