Skip to content

Commit 3b6319d

Browse files
committed
Remove install check again
1 parent 21b240c commit 3b6319d

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,3 @@ ignore = [
114114
[tool.ruff.lint.isort]
115115
extra-standard-library = ["tomllib"]
116116
known-first-party = ["typing_extensions", "_typed_dict_test_helper"]
117-
118-

src/test_typing_extensions.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6886,13 +6886,7 @@ def test_typing_extensions_compiles_with_opt(self):
68866886
except subprocess.CalledProcessError:
68876887
self.fail('Module does not compile with optimize=2 (-OO flag).')
68886888

6889-
def test_typing_extensions_is_not_installed(self):
6890-
#import importlib
6891-
#with self.assertRaises(ModuleNotFoundError):
6892-
# importlib.import_module("typing_extensions")
6893-
# Importlib tests fail on GitHub CI
6894-
# weak alternative to check that no version in site-packages is used
6895-
self.assertIn("src/typing_extensions.py", typing_extensions.__file__)
6889+
68966890

68976891
class CoolEmployee(NamedTuple):
68986892
name: str

0 commit comments

Comments
 (0)