summaryrefslogtreecommitdiff
path: root/runtests.py
Commit message (Expand)AuthorAgeFilesLines
* runtests: Print shard number also for each command in the EndToEnd test error...Stefan Behnel2022-02-171-2/+2
* runtests: print the shard number in front of the test name to show which was ...Stefan Behnel2022-02-161-10/+22
* runtests: Improve exception output.Stefan Behnel2022-02-161-5/+2
* runtests: Keep failing on test runner exceptions, because we can't continue w...Stefan Behnel2022-02-161-0/+1
* Enable faulthandler around the test runs to get a notice on shard crashes.Stefan Behnel2022-02-161-1/+27
* Import TextTestResult in test runner instead of _TextTestResult (GH-4415)da-woods2021-11-181-6/+3
* Change gcc version check in test runner to a numeric comparison (GH-4359)da-woods2021-11-181-2/+4
* Fix embed test in Py2.6.0.29.23Stefan Behnel2021-04-141-1/+1
* Make embed test more debuggable by printing the path setup and the build outp...Stefan Behnel2021-04-141-5/+13
* Summarize test failures when running in shards.Stefan Behnel2021-04-141-9/+30
* Test runner statistics: show the most time intensive test steps (compilatio/r...Stefan Behnel2021-04-141-1/+1
* Use CFLAGS for compiler defines in test runner (GH-4099)vorfol2021-04-141-1/+4
* Disable the embedding test on MacOS-X to get the builds green again. Too many...Stefan Behnel2020-11-081-1/+3
* Make end-to-end tests fail on refnanny output.Stefan Behnel2020-06-301-0/+2
* Allow selecting specific doctests in test modules with "-k pattern", instead ...Stefan Behnel2020-06-101-1/+8
* Fix handling of "no-cpp" test tag for error tests, where "cpp" is already rem...Stefan Behnel2020-05-261-2/+4
* Move the work directory of the examples tests into an 'examples/' subdirector...Stefan Behnel2020-05-151-1/+2
* Remove Py2.4- compatibility fallback.Stefan Behnel2020-05-011-20/+1
* Always enable C line in traceback for tests (GH-3098)0.29.17Jeroen Demeyer2020-04-261-0/+5
* Work around error that "__reduce_cython__ cannot be found" when re-importing ...Stefan Behnel2020-04-251-0/+1
* Fix deprecated threading API usage in test runner.Stefan Behnel2020-01-071-3/+3
* Make pythran version checks more resilientserge-sans-paille2019-06-111-6/+4
* Fix mypy usage problem in test runner: should pass list, was passing tuple.Stefan Behnel2019-04-241-2/+2
* Try to make the test result passing from forked tests more robust.Stefan Behnel2019-01-191-16/+15
* ENH: implemented suggestion from issue 2700Oleksandr Pavlyk2018-11-071-0/+2
* PYTHONPATH: do not add trailing pathsepJeroen Demeyer2018-10-221-1/+4
* Exclude code-style test automatically if pycodestyle is not installed.Stefan Behnel2018-10-161-1/+7
* MAINT: if subtree test fails, print out all stdout, stderr not just lastmattip2018-09-241-3/+10
* Disable the numpy tests also for the new "numpy_old" tag.Stefan Behnel2018-09-221-1/+2
* Enable the NumPy 1.7 API macro in all NumPy integration tests that do not rel...Stefan Behnel2018-09-221-1/+9
* Warn when no "language_level" is specified to prepare the transition to langu...Stefan Behnel2018-09-161-2/+2
* Fix test compilation failure with Pythran 0.8.7.Stefan Behnel2018-09-161-1/+6
* Disable some CPython exception unit tests in older Python versions.Stefan Behnel2018-09-151-0/+2
* Adapt test_unicode.py test from CPython 3.7 and disable some unrelated tests ...Stefan Behnel2018-09-081-0/+1
* Enable branch coverage analysis in test runner.Stefan Behnel2018-09-071-1/+1
* Fix escaping in a test runner regex.Stefan Behnel2018-09-021-1/+1
* Split end-to-end test timings between build and run commands.Stefan Behnel2018-09-021-2/+3
* Include some more test executions in timing stats.Stefan Behnel2018-09-011-2/+5
* Clean up some file open/close usages in the test runner.Stefan Behnel2018-08-291-4/+1
* Write time stamps in test runner directly to original stderr, not to potentia...Stefan Behnel2018-08-291-1/+1
* Clean up some file open/close usages in the test runner.Stefan Behnel2018-08-291-15/+17
* Remove accidental duplication of test run timings.Stefan Behnel2018-08-281-4/+2
* Remove some dead test code.Stefan Behnel2018-08-281-2/+7
* Print aggregated test stats of all shards.test_statsStefan Behnel2018-08-271-14/+25
* Show slowest N tests in test stats per metric.Stefan Behnel2018-08-261-17/+27
* Enable coverage reporting in travis runs. Merge C/C++ jobs into one to simpli...Stefan Behnel2018-08-261-32/+26
* Improve test stats formatting.Stefan Behnel2018-08-261-1/+1
* Avoid printing test stats when no tests have run.Stefan Behnel2018-08-261-0/+2
* Fix some stats issues in the test runner.Stefan Behnel2018-08-261-5/+5
* Print run time stats in the test runner.Stefan Behnel2018-08-261-44/+87