Skip to content

Commit 0c584a7

Browse files
linux tests have to pass
1 parent 1345c76 commit 0c584a7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/test_modutils.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -275,11 +275,7 @@ def test_std_lib_found_before_same_named_package_on_path(self) -> None:
275275
sys_path = str(sys.path)
276276

277277
file = modutils.file_from_modpath(["copy"])
278-
assert not WIN32, str(
279-
resource,
280-
sys_path,
281-
file
282-
)
278+
raise AssertionError(str(resource, sys_path, file))
283279
self.assertNotIn("test", file) # tests/testdata/python3/data/copy.py
284280
self.assertTrue(any(stdlib in file for stdlib in modutils.STD_LIB_DIRS))
285281

0 commit comments

Comments
 (0)