We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pathlib
⚠This issue only affects Windows OS⚠
Tests are failing ONLY on Windows runners.
It almost always includes a path separator mismatch, but it also differs between versions:
Jython 2.5.3 (Windows):
Jython 2.2.1 (Windows):
From Jython 2.5.0 onwards, the failing tests are always the same:
====================================================================== FAIL: test_creation (polyfills.pathlib.__init__.PathTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "src\polyfills\pathlib\__init__.py", line 371, in test_creation self.assertEqual( AssertionError: '/tmp\\test.py' != '\\tmp\\test.py' ====================================================================== FAIL: test_dots (polyfills.pathlib.__init__.PathTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "src\polyfills\pathlib\__init__.py", line 381, in test_dots self.assertEqual(str(Path("../..")), "..%s.." % (_os.sep)) AssertionError: '../..' != '..\\..' ---------------------------------------------------------------------- Ran 90 tests in 0.188s FAILED (failures=2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
⚠This issue only affects Windows OS⚠
Tests are failing ONLY on Windows runners.
It almost always includes a path separator mismatch, but it also differs between versions:
Jython 2.5.3 (Windows):
Jython 2.2.1 (Windows):
From Jython 2.5.0 onwards, the failing tests are always the same:
The text was updated successfully, but these errors were encountered: