Skip to content

Commit c2a4551

Browse files
committed
Add extra no-op tests to test_import.SubinterpImportTests
1 parent f5da369 commit c2a4551

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Lib/test/test_import/__init__.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2467,6 +2467,30 @@ def test_multi_init_extension_per_interpreter_gil_compat(self):
24672467
self.check_compatible_here(
24682468
modname, filename, strict=False, isolated=False)
24692469

2470+
def test_extra_A(self):
2471+
return
2472+
2473+
def test_extra_B(self):
2474+
return
2475+
2476+
def test_extra_C(self):
2477+
return
2478+
2479+
def test_extra_D(self):
2480+
return
2481+
2482+
def test_extra_E(self):
2483+
return
2484+
2485+
def test_extra_F(self):
2486+
return
2487+
2488+
def test_extra_G(self):
2489+
return
2490+
2491+
def test_extra_H(self):
2492+
return
2493+
24702494
@unittest.skipIf(_testinternalcapi is None, "requires _testinternalcapi")
24712495
def test_python_compat(self):
24722496
module = 'threading'

0 commit comments

Comments
 (0)