diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2018-03-11 09:31:35 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-11 09:31:35 -0700 |
| commit | 2ffb0ecc5e41c5486056fcd00aca274d77858860 (patch) | |
| tree | 5f0325b14d059f76d566dfe2e2ec814dc5b42e21 /setup.py | |
| parent | b578d2febfd35f80fcfa1ce1bdf18d44d21b1581 (diff) | |
| download | psutil-2ffb0ecc5e41c5486056fcd00aca274d77858860.tar.gz | |
Revert "Move tests out of package to top level directory (#1232)" (#1242)
This reverts commit b578d2febfd35f80fcfa1ce1bdf18d44d21b1581.
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -279,7 +279,7 @@ def main(): url='https://github.com/giampaolo/psutil', platforms='Platform Independent', license='BSD', - packages=['psutil'], + packages=['psutil', 'psutil.tests'], ext_modules=extensions, # see: python setup.py register --list-classifiers classifiers=[ @@ -327,7 +327,7 @@ def main(): if setuptools is not None: kwargs.update( python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", - test_suite="tests.get_suite", + test_suite="psutil.tests.get_suite", tests_require=[ 'ipaddress; python_version < "3.3"', 'mock; python_version < "3.3"', |
