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
87d6e136
Commit
87d6e136
authored
Mar 14, 2016
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test_venv on FreeBSD buildbot
Ignore pip warning in test_venv.test_with_venv().
parent
21d0e1b5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
Lib/test/test_venv.py
Lib/test/test_venv.py
+10
-1
No files found.
Lib/test/test_venv.py
View file @
87d6e136
...
...
@@ -8,6 +8,7 @@ Licensed to the PSF under a contributor agreement.
import
ensurepip
import
os
import
os.path
import
re
import
struct
import
subprocess
import
sys
...
...
@@ -394,7 +395,15 @@ class EnsurePipTest(BaseTest):
# We force everything to text, so unittest gives the detailed diff
# if we get unexpected results
err
=
err
.
decode
(
"latin-1"
)
# Force to text, prevent decoding errors
self
.
assertEqual
(
err
,
""
)
# Ignore the warning:
# "The directory '$HOME/.cache/pip/http' or its parent directory
# is not owned by the current user and the cache has been disabled.
# 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
)
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
# future pip versions, this test can likely be relaxed further.
...
...
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