We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86c65d7 commit ea4d834Copy full SHA for ea4d834
1 file changed
tests/venv_site_packages_libs/shared_lib_loading_test.py
@@ -54,9 +54,7 @@ def test_shared_library_linking_unix(self):
54
)
55
56
# Check that the module was loaded from the venv.
57
- # Use Path for platform-agnostic comparison, though this test is skipIf(os.name == "nt")
58
- actual_file = Path(ext_with_libs.adder.__file__).resolve()
59
- self.assertIn(".venv", actual_file.parts)
+ self.assertIn(".venv/", ext_with_libs.adder.__file__)
60
61
adder_path = os.path.realpath(ext_with_libs.adder.__file__)
62
0 commit comments