summaryrefslogtreecommitdiff
path: root/runtests.py
Commit message (Expand)AuthorAgeFilesLines
* Import TextTestResult in test runner instead of _TextTestResult (GH-4415)da-woods2021-10-171-6/+3
* Change gcc version check in test runner to a numeric comparison (GH-4359)da-woods2021-10-011-2/+4
* Py3.4 does not support '%' formatting for byte strings.Stefan Behnel2021-08-071-1/+1
* Fix output encoding problems in the test runner with Py2.7 by not trying to d...Stefan Behnel2021-08-071-3/+6
* Revert "Fix output encoding problems in the test runner with Py2.7 by replaci...Stefan Behnel2021-08-071-2/+2
* Fix output encoding problems in the test runner with Py2.7 by replacing impli...Stefan Behnel2021-08-061-2/+2
* Fix output encoding problems in the test runner with Py2.7.Stefan Behnel2021-08-061-3/+3
* runtests: include the C compiler error output in the compile exception to sho...Stefan Behnel2021-07-311-1/+16
* Resolve some issues with "cpp_locals" (GH-4265)da-woods2021-07-191-9/+38
* Add directive "cpp_locals" to handle C++ variables using std::optional (GH-4225)da-woods2021-06-291-0/+4
* Automatically add stubs for "cython.cimports.*" in the test runner to make th...Stefan Behnel2021-06-141-0/+16
* Modernise module loading in test runner using importlib.Stefan Behnel2021-06-141-4/+21
* Allow both testmod.py and testmod.pyx as test module names, next to each otherStefan Behnel2021-06-141-36/+49
* Add support for C++17 execution policy parameter (GH-3790)Ashwin Srinath2021-05-251-0/+31
* Use std::move in c++ during yield context switch. (GH-4154)Yu Feng2021-05-181-1/+1
* Fix annotations for decorated classes (GH-4151)matsjoyce2021-05-151-0/+1
* Test runner: make "-k" option also select amongst the unit tests, not only do...Stefan Behnel2021-05-151-6/+19
* Exclude end-to-end tests from test runs with '--cython-only' since they execu...Stefan Behnel2021-05-141-0/+3
* Don't use symbolic links on Windows since it may require admin rights. (GH-3815)matham2021-05-021-4/+3
* Switch to github actions (GH-3943)davfsa2021-04-301-4/+3
* Correct the declaration of PyContextVar_New() and add convenience functions f...Stefan Behnel2021-04-271-0/+2
* Merge branch '0.29.x'Stefan Behnel2021-04-141-1/+4
|\
| * 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
* | Test runner statistics: show the most time intensive test steps (compilatio/r...Stefan Behnel2021-04-121-1/+1
* | Move variable initialisation to a better place, next to a similar one.Stefan Behnel2021-04-041-1/+1
* | Summarize test failures when running in shards.Stefan Behnel2021-04-041-9/+30
* | Disable time_pxd test in Python 3.4da-woods2021-02-161-0/+1
* | Avoid the terms whitelist and blacklist.Robert Bradshaw2020-12-181-3/+3
* | Revert "Revert "Disable the embedding test on MacOS-X to get the builds green...Stefan Behnel2020-11-081-1/+3
* | Revert "Disable the embedding test on MacOS-X to get the builds green again. ...Stefan Behnel2020-11-071-3/+1
* | Disable the embedding test on MacOS-X to get the builds green again. Too many...Stefan Behnel2020-10-211-1/+3
* | Add a "gdb" test tag that depends on being able to run gdb.Stefan Behnel2020-08-241-0/+17
* | Revert "Set PYTHONHOME in embedding test to fix compilation issues in Py3.8/m...Stefan Behnel2020-08-111-1/+0
* | Set PYTHONHOME in embedding test to fix compilation issues in Py3.8/macOS.Stefan Behnel2020-08-111-0/+1
* | Try to fix NumPy test failures by not setting the "NPY_NO_DEPRECATED_API" #de...Stefan Behnel2020-08-011-1/+1
* | Print test dependency versions to help with test failure debugging.Stefan Behnel2020-08-011-2/+24
* | Test runner: disable keep-alive output in --debug mode to keep a potential pd...Stefan Behnel2020-06-281-1/+1
* | Validate and fix temp releasing (GH-3708)scoder2020-06-281-0/+2
* | Allow selecting specific doctests in test modules with "-k pattern", instead ...Stefan Behnel2020-06-091-1/+8