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
20f8728b
Commit
20f8728b
authored
Feb 24, 2014
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #20535: PYTHONWARNING no longer affects the run_tests.py script.
Patch by Arfrever Frehtes Taifersar Arahesis.
parent
09141c47
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
Misc/NEWS
Misc/NEWS
+6
-0
Tools/scripts/run_tests.py
Tools/scripts/run_tests.py
+6
-0
No files found.
Misc/NEWS
View file @
20f8728b
...
@@ -149,6 +149,12 @@ Build
...
@@ -149,6 +149,12 @@ Build
- Issue #20609: Restored the ability to build 64-bit Windows binaries on
- Issue #20609: Restored the ability to build 64-bit Windows binaries on
32-bit Windows, which was broken by the change in issue #19788.
32-bit Windows, which was broken by the change in issue #19788.
Tools/Demos
-----------
- Issue #20535: PYTHONWARNING no longer affects the run_tests.py script.
Patch by Arfrever Frehtes Taifersar Arahesis.
What'
s
New
in
Python
3.3.4
?
What'
s
New
in
Python
3.3.4
?
===========================
===========================
...
...
Tools/scripts/run_tests.py
View file @
20f8728b
...
@@ -32,6 +32,12 @@ def main(regrtest_args):
...
@@ -32,6 +32,12 @@ def main(regrtest_args):
]
]
# Allow user-specified interpreter options to override our defaults.
# Allow user-specified interpreter options to override our defaults.
args
.
extend
(
test
.
support
.
args_from_interpreter_flags
())
args
.
extend
(
test
.
support
.
args_from_interpreter_flags
())
# Workaround for issue #20355
os
.
environ
.
pop
(
"PYTHONWARNINGS"
,
None
)
# Workaround for issue #20361
args
.
extend
([
'-W'
,
'error::BytesWarning'
])
args
.
extend
([
'-m'
,
'test'
,
# Run the test suite
args
.
extend
([
'-m'
,
'test'
,
# Run the test suite
'-r'
,
# Randomize test order
'-r'
,
# Randomize test order
'-w'
,
# Re-run failed tests in verbose mode
'-w'
,
# Re-run failed tests in verbose mode
...
...
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