summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-05-06 12:58:49 -0700
committerGitHub <noreply@github.com>2020-05-06 21:58:49 +0200
commite1ea2bccf8aea404dca0f79398f36f37217c45f6 (patch)
treeeee85900de7239d5425ddd7e0ee4ff6d4b006fb1 /scripts
parent91cd7fb53fe4cc93f837c7f543043c67b7b66674 (diff)
downloadpsutil-e1ea2bccf8aea404dca0f79398f36f37217c45f6.tar.gz
Add new TestFdsLeak test class (#1752)
Diffstat (limited to 'scripts')
-rwxr-xr-x[-rw-r--r--]scripts/internal/tidelift.py0
-rwxr-xr-xscripts/internal/winmake.py8
2 files changed, 8 insertions, 0 deletions
diff --git a/scripts/internal/tidelift.py b/scripts/internal/tidelift.py
index fcba3e61..fcba3e61 100644..100755
--- a/scripts/internal/tidelift.py
+++ b/scripts/internal/tidelift.py
diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py
index 4f1e65ed..de99c327 100755
--- a/scripts/internal/winmake.py
+++ b/scripts/internal/winmake.py
@@ -464,6 +464,13 @@ def test_contracts():
sh("%s psutil\\tests\\test_contracts.py" % PYTHON)
+def test_testutils():
+ """Run test utilities tests"""
+ build()
+ test_setup()
+ sh("%s psutil\\tests\\test_testutils.py" % PYTHON)
+
+
def test_by_name(name):
"""Run test by name"""
build()
@@ -569,6 +576,7 @@ def main():
sp.add_parser('test-process', help="run process tests")
sp.add_parser('test-system', help="run system tests")
sp.add_parser('test-unicode', help="run unicode tests")
+ sp.add_parser('test-testutils', help="run test utils tests")
sp.add_parser('uninstall', help="uninstall psutil")
sp.add_parser('upload-wheels', help="upload wheel files on PyPI")
sp.add_parser('wheel', help="create wheel file")