summaryrefslogtreecommitdiff
path: root/runtests.py
Commit message (Collapse)AuthorAgeFilesLines
* TST: de-uglify the setuptools appeasement in runtests.py a bit.Ralf Gommers2016-01-171-8/+6
| | | | This is a cleaner fix than the one committed in gh-7040.
* BLD: fix runtests.py, was broken by the move to setuptools.Ralf Gommers2016-01-171-7/+17
| | | | Issue was introduced by gh-6895.
* MAINT: Include from __future__ boilerplate in some files missing it.Charles Harris2015-12-051-0/+1
| | | | | Some newer *.py files are missing the `from __future__` boilerplate that helps assure Python2 and Python3 compatibility.
* DEV: allow parallel build in runtests.pyAntoine Pitrou2015-09-021-1/+5
| | | | | | Add a '-j' / '--parallel' option to runtests.py, to run the compilation step using multiple processes. This could later be enhanced to allow parallel testing.
* WHT: break long lines + pep8Pauli Virtanen2015-08-241-5/+10
|
* MAINT: add --bench and --bench-compare to runtests.pyPauli Virtanen2015-08-221-0/+64
|
* MAINT: make runtests.py --python and --ipython a little more ergonomicNathaniel J. Smith2015-05-151-1/+8
| | | | | I'm tired of having to manually enable warnings and import numpy, so maybe others are too.
* MAINT: runtests: enable generation of C code coverage info via gcovPauli Virtanen2013-10-251-1/+84
|
* BUG: runtests: make -t option work againPauli Virtanen2013-10-191-4/+13
|
* MAINT: update runtests.py from scipyPauli Virtanen2013-10-131-28/+112
| | | | | | | The additional chdir before starting the test allows tests that launch subprocesses to run. Fixes gh-3909
* MAINT: runtests: make it work on FedoraPauli Virtanen2013-08-051-1/+1
|
* ENH: Add a runtests.py script for running the test suitePauli Virtanen2013-05-111-0/+197
The script builds Numpy and runs the test suite of the built version. This is useful for development.