Search
Search Results
Search finished, found 4 page(s) matching the search query.
numpy.distutils
user guide...mespace from .subpackage import * ... __all__ = [s for s in dir() if not s.startswith('_')] from numpy.testing import Tester test = Tester().test bench = Tester().bench Extra features in NumPy Distutils Specifying config_fc options f...
- NumPy 1.14.0 Release Notes
...receives unicode strings instead of bytes in the resulting arrays. External nose plugins are usable by numpy.testing.Tester numpy.testing.Tester is now aware of nose plugins that are outside the nose built-in ones. This allows using, fo...
- NumPy 1.25.0 Release Notes
...t versions with similar names, e.g., pytest.mark.slow, pytest.mark.skipif, pytest.mark.parametrize. Functions removed: Tester import_nose run_module_suite (gh-23041) The numpy.testing.utils shim has been removed. Importing from the nump...
- Testing guidelines
...lines at the end of your package’s __init__.py file: ... def test(level=1, verbosity=1): from numpy.testing import Tester return Tester().test(level, verbosity) You will also need to add the tests directory in the configuration s...