Skip to content

Commit 43cc291

Browse files
authored
Merge branch 'main' into vendored-and-test-import-groups
2 parents 503bd5c + 93fa89c commit 43cc291

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
strategy:
113113
fail-fast: true
114114
matrix:
115-
os: [ubuntu-latest, macos-12, macos-latest]
115+
os: [ubuntu-latest, macos-13, macos-latest]
116116
python:
117117
- "3.8"
118118
- "3.9"

news/12964.trivial.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
A valid, but non-existent URL used in a test case was corrected to be a valid URL.

tests/functional/test_bad_url.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
def test_filenotfound_error_message(script: Any) -> None:
88
# Test the error message returned when using a bad 'file:' URL.
99
# make pip to fail and get an error message
10-
# by running "pip install -r file:nonexistent_file"
11-
proc = script.pip("install", "-r", "file:unexistent_file", expect_error=True)
10+
# by running "pip install -r file:///nonexistent_file"
11+
proc = script.pip("install", "-r", "file:///unexistent_file", expect_error=True)
1212
assert proc.returncode == 1
1313
expect = (
1414
"ERROR: 404 Client Error: FileNotFoundError for url: file:///unexistent_file"

0 commit comments

Comments
 (0)