Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-20361: Remove workaround for a now fixed bug (#5283) | Victor Stinner | 2018-01-23 | 1 | -3/+0 |
| | | | | "python3 -bb -Wd" now works as expected: "python3 -bb -Wd -Werror::BytesWarning" is no more needed. | ||||
* | Simplify run_tests.py (#3482) | Antoine Pitrou | 2017-09-10 | 1 | -5/+1 |
| | |||||
* | regrtest: add -u for unbuffered stdout/stderr | Victor Stinner | 2016-09-21 | 1 | -0/+1 |
| | |||||
* | Issue #21907: Exit with the correct return code | Zachary Ware | 2014-07-07 | 1 | -1/+1 |
| | |||||
* | Issue #21907: Improved the batch scripts provided for building Python. | Zachary Ware | 2014-07-07 | 1 | -1/+5 |
| | | | | | | The user-facing scripts in PCbuild have been updated to be easier to use and the buildbot scripts in Tools\buildbot have been updated to use the user-facing scripts in PCbuild wherever possible. | ||||
* | Remove a workaround for fixed issue #20355. | Antoine Pitrou | 2014-04-28 | 1 | -2/+0 |
| | |||||
* | Issue #20535: PYTHONWARNING no longer affects the run_tests.py script. | Serhiy Storchaka | 2014-02-24 | 1 | -0/+6 |
| | | | | Patch by Arfrever Frehtes Taifersar Arahesis. | ||||
* | Issue #19936: Added executable bits or shebang lines to Python scripts which | Serhiy Storchaka | 2014-01-16 | 1 | -0/+0 |
| | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script. | ||||
* | Move private function _args_from_interpreter_flags() to subprocess.py, so | Antoine Pitrou | 2012-05-18 | 1 | -1/+5 |
| | | | | | that it can be imported when threads are disabled. (followup to issue #12098) | ||||
* | enable hash randomization by default | Benjamin Peterson | 2012-02-21 | 1 | -1/+0 |
| | |||||
* | Merge 3.2: Issue #13703 plus some related test suite fixes. | Georg Brandl | 2012-02-20 | 1 | -0/+1 |
| | |||||
* | Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default': | Antoine Pitrou | 2011-10-01 | 1 | -1/+1 |
| | | | | Issue #12804: Prevent "make test" from using network resources. | ||||
* | Issue #12804: Prevent "make test" from using network resources. | Nadeem Vawda | 2011-08-21 | 1 | -1/+1 |
| | |||||
* | Use -n for tests under Windows | Antoine Pitrou | 2011-08-16 | 1 | -0/+2 |
| | |||||
* | Clean up description of Tools/scripts/run_tests.py. | Nadeem Vawda | 2011-08-02 | 1 | -4/+4 |
| | | | | Also, add an entry for the script in Tools/scripts/README. | ||||
* | Issue #11651: Move options for running tests into a Python script. | Nadeem Vawda | 2011-08-01 | 1 | -0/+45 |
This will be particularly useful to Windows users. run_tests.py originally written by Brett Cannon. |