summaryrefslogtreecommitdiff
path: root/pytest.ini
Commit message (Collapse)AuthorAgeFilesLines
* TST: ignore pytest warningmattip2020-12-141-1/+2
|
* BUG: fix a compile and a test warningmattip2020-08-091-2/+0
|
* DEP: deprecate importing numpy/matrixlib.pySeth Troisi2020-01-231-0/+1
|
* MAINT: Remove python3 deprecationwarnings in pytest.ini (#15399)Seth Troisi2020-01-231-6/+0
|
* MAINT: Remove python2 array_getslice and array_setslice (#15263)Seth Troisi2020-01-071-2/+0
| | | These implemented the __getslice__ and __setslice__ methods in Python 2, which no longer exist in Python 3.
* MAINT: Remove references to non-existent sys.exc_clear()Jon Dufresne2020-01-051-1/+0
| | | | | sys.exc_clear() was removed in Python 3. All internal uses can be removed.
* TST: add value to pytest.ini for pytest6 compatibilitymattip2019-12-101-0/+1
|
* TST: Register markers in conftest.py.Charles Harris2019-05-131-4/+0
| | | | | Register the markers 'slow' and 'valgrind' in the `conftest.py` file instead of `pytest.ini` as the latter file is not always present.
* BLD: Make CI pass again with pytest 4.5Eric Wieser2019-05-111-0/+4
|
* TST, DOC: enable refguide_checkTyler Reddy2018-12-141-1/+1
| | | | | | | | * ported the refguide_check module from SciPy for usage in NumPy docstring execution/ verification; added the refguide_check run to Azure Mac OS CI * adjusted NumPy docstrings such that refguide_check passes
* BUG: Fix matrix PendingDeprecationWarning suppression for pytest 3.8+.Charles Harris2018-09-061-0/+5
| | | | | | | | | | | | | | | Pytest < 3.8 ignored warnings issued during test collection, but that changed in pytest 3.8 and the method NumPy used to suppress the PendingDeprecationWarning for matrices no longer worked, or rather, was exposed as not working. The fix here is to suppress the warning in pytest.ini and pytesttester.py , which should work as long as the tests are the only places left where NumPy uses matrices. An alternate fix is to delay the construction of matrices in the tests until they are actually run, which has the virtue of test localization but is a bit more complicated. See https://github.com/pytest-dev/pytest/issues/3945 for discussion.
* TST: Update pytest.ini and PytestTesterCharles Harris2018-04-041-1/+1
| | | | | | | | * Make PytestTester callable. * Rename 'timer' to 'durations', corresponding with pytest. * Offset 'verbose', no entry is now '-q'. * Move some `ignore` warnings into PytestTester so that they affect releases, not just develop.
* MAINT: Update pytest.ini.Charles Harris2018-03-311-3/+15
| | | | Include relevant suppression of various warnings.
* MAINT: Add a pytest.inixoviat2017-12-221-0/+9