-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12774 from uranusjr/disable-313-uri-test
Mark failing tests on Windows + Py3.13 as xfail
- Loading branch information
Showing
2 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -383,7 +383,10 @@ def test_clean_url_path_with_local_path(path: str, expected: str) -> None: | |
pytest.param( | ||
"file:///T:/path/with spaces/", | ||
"file:///T:/path/with%20spaces", | ||
marks=pytest.mark.skipif("sys.platform != 'win32'"), | ||
marks=pytest.mark.skipif( | ||
"sys.platform != 'win32' or " | ||
"sys.version_info == (3, 13, 0, 'beta', 2)" | ||
), | ||
), | ||
# URL with Windows drive letter, running on non-windows | ||
# platform. The `:` after the drive should be quoted. | ||
|
@@ -396,7 +399,10 @@ def test_clean_url_path_with_local_path(path: str, expected: str) -> None: | |
pytest.param( | ||
"git+file:///T:/with space/[email protected]#egg=my-package-1.0", | ||
"git+file:///T:/with%20space/[email protected]#egg=my-package-1.0", | ||
marks=pytest.mark.skipif("sys.platform != 'win32'"), | ||
marks=pytest.mark.skipif( | ||
"sys.platform != 'win32' or " | ||
"sys.version_info == (3, 13, 0, 'beta', 2)" | ||
), | ||
), | ||
# Test a VCS URL with a Windows drive letter and revision, | ||
# running on non-windows platform. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters