Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b1eb20e6
Commit
b1eb20e6
authored
Jul 26, 2019
by
Steve Dower
Committed by
GitHub
Jul 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-37664: Update regex for ignoring cache warning on some buildbots (GH-14960)
parent
3e54b575
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Lib/test/test_venv.py
Lib/test/test_venv.py
+3
-2
No files found.
Lib/test/test_venv.py
View file @
b1eb20e6
...
...
@@ -473,8 +473,9 @@ class EnsurePipTest(BaseTest):
# Please check the permissions and owner of that directory. If
# executing pip with sudo, you may want sudo's -H flag."
# where $HOME is replaced by the HOME environment variable.
err
=
re
.
sub
(
"^The directory .* or its parent directory is not owned "
"by the current user .*$"
,
""
,
err
,
flags
=
re
.
MULTILINE
)
err
=
re
.
sub
(
"^(WARNING: )?The directory .* or its parent directory "
"is not owned by the current user .*$"
,
""
,
err
,
flags
=
re
.
MULTILINE
)
self
.
assertEqual
(
err
.
rstrip
(),
""
)
# Being fairly specific regarding the expected behaviour for the
# initial bundling phase in Python 3.4. If the output changes in
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment