From 3983d2c7274f7d73147351f170ede3946babcf9e Mon Sep 17 00:00:00 2001 From: Nipunn Koorapati Date: Tue, 12 Oct 2021 18:29:24 -0700 Subject: [PATCH] Pep561 tests seem to work on mac --- mypy/test/testpep561.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/mypy/test/testpep561.py b/mypy/test/testpep561.py index d1f7148ab18c..adbbaefb8de4 100644 --- a/mypy/test/testpep561.py +++ b/mypy/test/testpep561.py @@ -79,9 +79,6 @@ def install_package(pkg: str, def test_pep561(testcase: DataDrivenTestCase) -> None: """Test running mypy on files that depend on PEP 561 packages.""" - if (sys.platform == 'darwin' and hasattr(sys, 'base_prefix') and - sys.base_prefix != sys.prefix): - pytest.skip() assert testcase.old_cwd is not None, "test was not properly set up" if 'python2' in testcase.name.lower(): python = try_find_python2_interpreter()