diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2017-07-07 08:24:14 -0600 |
|---|---|---|
| committer | xoviat <xoviat@users.noreply.github.com> | 2017-12-22 17:30:48 -0600 |
| commit | 3b8b1d3b1283976392f407b4a704316650dcf70a (patch) | |
| tree | 197a5656ad7ff0e5fd94f16f41594d5a97d3756c /numpy/testing/setup.py | |
| parent | 0e57af86d429e2658b1fbde22960c4c51fc62e84 (diff) | |
| download | numpy-3b8b1d3b1283976392f407b4a704316650dcf70a.tar.gz | |
ENH: Add pytest_tools directory.
Create numpy/testing/pytest_tools and populate it with
pytest compatible versions of
* decorators.py
* utils.py
* noseclasses.py
* nosetester.py
Note that noseclasses and nosetester are basically dummy modules at this
point, they don't do anything, but they do import when nose is not
present. Fixing the test runners is for another PR.
Diffstat (limited to 'numpy/testing/setup.py')
| -rwxr-xr-x | numpy/testing/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/testing/setup.py b/numpy/testing/setup.py index a5e9656a3..5a0f977d9 100755 --- a/numpy/testing/setup.py +++ b/numpy/testing/setup.py @@ -7,6 +7,7 @@ def configuration(parent_package='',top_path=None): config = Configuration('testing', parent_package, top_path) config.add_subpackage('nose_tools') + config.add_subpackage('pytest_tools') config.add_data_dir('tests') return config |
