Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #8027 from rainwoodman/patch-2 | Charles Harris | 2016-10-01 | 1 | -4/+9 |
|\ | | | | | ENH: Add platform indepedent lib dir to PYTHONPATH | ||||
| * | Add a comment to avoid accidental removal. | Yu Feng | 2016-09-07 | 1 | -0/+1 |
| | | |||||
| * | add platform indepedent lib dir to PYTHONPATH | Yu Feng | 2016-09-06 | 1 | -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. | ||||
* | | DOC: change Numpy to NumPy in remaining files | Pierre de Buyl | 2016-09-06 | 1 | -1/+1 |
|/ | | | | the files in doc/ and numpy/ were covered in previous commits | ||||
* | MAINT: Remove leftover imp module imports. | Charles Harris | 2016-09-03 | 1 | -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. | ||||
* | ENH: Use new context manager for testing | Sebastian Berg | 2016-09-02 | 1 | -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. | ||||
* | STY: Use consistent variable convention. | Scott Sanderson | 2016-07-25 | 1 | -2/+2 |
| | |||||
* | DOC: Add example to runtests usage doc. | Scott Sanderson | 2016-07-23 | 1 | -0/+2 |
| | |||||
* | MAINT: Fix remaining uses of deprecated Python imp module. | Charles Harris | 2016-07-18 | 1 | -2/+5 |
| | |||||
* | expose test runner raise_warnings option | mattip | 2016-05-09 | 1 | -0/+4 |
| | |||||
* | TST: de-uglify the setuptools appeasement in runtests.py a bit. | Ralf Gommers | 2016-01-17 | 1 | -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 Gommers | 2016-01-17 | 1 | -7/+17 |
| | | | | Issue was introduced by gh-6895. | ||||
* | MAINT: Include from __future__ boilerplate in some files missing it. | Charles Harris | 2015-12-05 | 1 | -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.py | Antoine Pitrou | 2015-09-02 | 1 | -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 + pep8 | Pauli Virtanen | 2015-08-24 | 1 | -5/+10 |
| | |||||
* | MAINT: add --bench and --bench-compare to runtests.py | Pauli Virtanen | 2015-08-22 | 1 | -0/+64 |
| | |||||
* | MAINT: make runtests.py --python and --ipython a little more ergonomic | Nathaniel J. Smith | 2015-05-15 | 1 | -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 gcov | Pauli Virtanen | 2013-10-25 | 1 | -1/+84 |
| | |||||
* | BUG: runtests: make -t option work again | Pauli Virtanen | 2013-10-19 | 1 | -4/+13 |
| | |||||
* | MAINT: update runtests.py from scipy | Pauli Virtanen | 2013-10-13 | 1 | -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 Fedora | Pauli Virtanen | 2013-08-05 | 1 | -1/+1 |
| | |||||
* | ENH: Add a runtests.py script for running the test suite | Pauli Virtanen | 2013-05-11 | 1 | -0/+197 |
The script builds Numpy and runs the test suite of the built version. This is useful for development. |