summaryrefslogtreecommitdiff
path: root/runtests.py
AgeCommit message (Collapse)AuthorFilesLines
2017-10-15BUG: Fix runtests --benchmark-compare in python 3Eric Wieser1-2/+2
`check_output` returns bytes, but the rest of the command line is unicode.
2017-08-29BUG: Fix broken runtests '-t' option.Charles Harris1-2/+4
The '-t' was broken when init files were added to the tests directories, as it was no longer valid to import tests from the numpy git repo. The fix here is the use a path to the installed numpy. Which numpy that is depends on the '--no-build' option. [ci skip]
2017-06-27MAINT: Fix spelling of develop.Charles Harris1-2/+2
2017-06-26TST: raise_warnings="develop" as default in `runtests.py -t ...`Sebastian Berg1-1/+8
2017-06-21TST: add a --timer argument to runtests.Ralf Gommers1-1/+15
2017-04-11BUG: runtests --bench fails on windowsEric Wieser1-12/+6
Previously, it would send the task into the backround, and resume a shell, making interactive use impossible. This is due to https://bugs.python.org/issue9148, and follows on from gh-8873.
2017-04-03ENH: Use cmd on windows, rather than shEric Wieser1-2/+2
2017-04-03ENH: Use subprocess, not execvEric Wieser1-2/+2
This means that the `SHELL` variable does not need to be a full path. execvp would also have solved this It also means that this works inside git bash on windows. Previously, it was confused by windows file paths.
2017-03-30BUG: Fix runtests to not assume os.pathsep is :Eric Wieser1-1/+1
2016-10-01Merge pull request #8027 from rainwoodman/patch-2Charles Harris1-4/+9
ENH: Add platform indepedent lib dir to PYTHONPATH
2016-09-07Add a comment to avoid accidental removal.Yu Feng1-0/+1
2016-09-06add platform indepedent lib dir to PYTHONPATHYu Feng1-4/+8
This allows using runtests.py with pure python packages. I doodled the change based on my local version, so we shall wait and see if travis chokes up.
2016-09-06DOC: change Numpy to NumPy in remaining filesPierre de Buyl1-1/+1
the files in doc/ and numpy/ were covered in previous commits
2016-09-03MAINT: Remove leftover imp module imports.Charles Harris1-1/+0
There were two remaining imports of the deprecated imp module, neither of which seems to have been used beyond the import. Closes #5997.
2016-09-02ENH: Use new context manager for testingSebastian Berg1-1/+1
Making the outer context manager a suppress warnings gives good control to print warnings only once in release mode and suppress some specific warnings which cannot be easily avoided otherwise.
2016-07-25STY: Use consistent variable convention.Scott Sanderson1-2/+2
2016-07-23DOC: Add example to runtests usage doc.Scott Sanderson1-0/+2
2016-07-18MAINT: Fix remaining uses of deprecated Python imp module.Charles Harris1-2/+5
2016-05-09expose test runner raise_warnings optionmattip1-0/+4
2016-01-17TST: de-uglify the setuptools appeasement in runtests.py a bit.Ralf Gommers1-8/+6
This is a cleaner fix than the one committed in gh-7040.
2016-01-17BLD: fix runtests.py, was broken by the move to setuptools.Ralf Gommers1-7/+17
Issue was introduced by gh-6895.
2015-12-05MAINT: Include from __future__ boilerplate in some files missing it.Charles Harris1-0/+1
Some newer *.py files are missing the `from __future__` boilerplate that helps assure Python2 and Python3 compatibility.
2015-09-02DEV: allow parallel build in runtests.pyAntoine Pitrou1-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.
2015-08-24WHT: break long lines + pep8Pauli Virtanen1-5/+10
2015-08-22MAINT: add --bench and --bench-compare to runtests.pyPauli Virtanen1-0/+64
2015-05-15MAINT: make runtests.py --python and --ipython a little more ergonomicNathaniel J. Smith1-1/+8
I'm tired of having to manually enable warnings and import numpy, so maybe others are too.
2013-10-25MAINT: runtests: enable generation of C code coverage info via gcovPauli Virtanen1-1/+84
2013-10-19BUG: runtests: make -t option work againPauli Virtanen1-4/+13
2013-10-13MAINT: update runtests.py from scipyPauli Virtanen1-28/+112
The additional chdir before starting the test allows tests that launch subprocesses to run. Fixes gh-3909
2013-08-05MAINT: runtests: make it work on FedoraPauli Virtanen1-1/+1
2013-05-11ENH: Add a runtests.py script for running the test suitePauli Virtanen1-0/+197
The script builds Numpy and runs the test suite of the built version. This is useful for development.