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
03504fc2
Commit
03504fc2
authored
Mar 24, 2011
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#11030: make --coverdir work for relative directories again.
parent
6712a3e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Lib/test/regrtest.py
Lib/test/regrtest.py
+3
-1
No files found.
Lib/test/regrtest.py
View file @
03504fc2
...
...
@@ -315,7 +315,9 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
elif
o
in
(
'-T'
,
'--coverage'
):
trace
=
True
elif
o
in
(
'-D'
,
'--coverdir'
):
coverdir
=
os
.
path
.
join
(
os
.
getcwd
(),
a
)
# CWD is replaced with a temporary dir before calling main(), so we
# need join it with the saved CWD so it goes where the user expects.
coverdir
=
os
.
path
.
join
(
support
.
SAVEDCWD
,
a
)
elif
o
in
(
'-N'
,
'--nocoverdir'
):
coverdir
=
None
elif
o
in
(
'-R'
,
'--huntrleaks'
):
...
...
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