summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2018-03-11 09:31:35 -0700
committerGitHub <noreply@github.com>2018-03-11 09:31:35 -0700
commit2ffb0ecc5e41c5486056fcd00aca274d77858860 (patch)
tree5f0325b14d059f76d566dfe2e2ec814dc5b42e21 /scripts
parentb578d2febfd35f80fcfa1ce1bdf18d44d21b1581 (diff)
downloadpsutil-2ffb0ecc5e41c5486056fcd00aca274d77858860.tar.gz
Revert "Move tests out of package to top level directory (#1232)" (#1242)
This reverts commit b578d2febfd35f80fcfa1ce1bdf18d44d21b1581.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/internal/winmake.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py
index de58fbfc..548f7a8e 100755
--- a/scripts/internal/winmake.py
+++ b/scripts/internal/winmake.py
@@ -355,7 +355,7 @@ def test_process():
"""Run process tests"""
install()
test_setup()
- sh("%s -m unittest -v tests.test_process" % PYTHON)
+ sh("%s -m unittest -v psutil.tests.test_process" % PYTHON)
@cmd
@@ -363,7 +363,7 @@ def test_system():
"""Run system tests"""
install()
test_setup()
- sh("%s -m unittest -v tests.test_system" % PYTHON)
+ sh("%s -m unittest -v psutil.tests.test_system" % PYTHON)
@cmd
@@ -371,7 +371,7 @@ def test_platform():
"""Run windows only tests"""
install()
test_setup()
- sh("%s -m unittest -v tests.test_windows" % PYTHON)
+ sh("%s -m unittest -v psutil.tests.test_windows" % PYTHON)
@cmd
@@ -379,7 +379,7 @@ def test_misc():
"""Run misc tests"""
install()
test_setup()
- sh("%s -m unittest -v tests.test_misc" % PYTHON)
+ sh("%s -m unittest -v psutil.tests.test_misc" % PYTHON)
@cmd
@@ -387,7 +387,7 @@ def test_unicode():
"""Run unicode tests"""
install()
test_setup()
- sh("%s -m unittest -v tests.test_unicode" % PYTHON)
+ sh("%s -m unittest -v psutil.tests.test_unicode" % PYTHON)
@cmd
@@ -395,7 +395,7 @@ def test_connections():
"""Run connections tests"""
install()
test_setup()
- sh("%s -m unittest -v tests.test_connections" % PYTHON)
+ sh("%s -m unittest -v psutil.tests.test_connections" % PYTHON)
@cmd
@@ -403,7 +403,7 @@ def test_contracts():
"""Run contracts tests"""
install()
test_setup()
- sh("%s -m unittest -v tests.test_contracts" % PYTHON)
+ sh("%s -m unittest -v psutil.tests.test_contracts" % PYTHON)
@cmd