(self)
| 12 | |
| 13 | class MypycTest(TestCase): |
| 14 | def test_using_mypyc(self) -> None: |
| 15 | if os.getenv("TEST_MYPYC", None) == "1": |
| 16 | assert not mypy.__file__.endswith(".py"), "Expected to find a mypyc-compiled version" |
| 17 | |
| 18 | def test_shared_files_consistent(self) -> None: |
| 19 | if os.getenv("TEST_MYPYC", None) != "1": |