summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2018-04-13 04:16:16 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2018-04-13 04:16:16 +0200
commit1ab4b3a1f416eda6c42414a7fbc2dd716e7e42f9 (patch)
treef367335c66780128bbf714088139b491a46b7e4f /scripts
parentb2bbd272f6b183ddc7c119d39ed5c969b399239f (diff)
downloadpsutil-1ab4b3a1f416eda6c42414a7fbc2dd716e7e42f9.tar.gz
adust winmake individual tests
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 bd518f09..ff3a6489 100755
--- a/scripts/internal/winmake.py
+++ b/scripts/internal/winmake.py
@@ -365,7 +365,7 @@ def test_process():
"""Run process tests"""
install()
test_setup()
- sh("%s -m unittest -v psutil.tests.test_process" % PYTHON)
+ sh("%s psutil\\tests\\test_process.py" % PYTHON)
@cmd
@@ -373,7 +373,7 @@ def test_system():
"""Run system tests"""
install()
test_setup()
- sh("%s -m unittest -v psutil.tests.test_system" % PYTHON)
+ sh("%s psutil\\tests\\test_system.py" % PYTHON)
@cmd
@@ -381,7 +381,7 @@ def test_platform():
"""Run windows only tests"""
install()
test_setup()
- sh("%s -m unittest -v psutil.tests.test_windows" % PYTHON)
+ sh("%s psutil\\tests\\test_windows.py" % PYTHON)
@cmd
@@ -389,7 +389,7 @@ def test_misc():
"""Run misc tests"""
install()
test_setup()
- sh("%s -m unittest -v psutil.tests.test_misc" % PYTHON)
+ sh("%s psutil\\tests\\test_misc.py" % PYTHON)
@cmd
@@ -397,7 +397,7 @@ def test_unicode():
"""Run unicode tests"""
install()
test_setup()
- sh("%s -m unittest -v psutil.tests.test_unicode" % PYTHON)
+ sh("%s psutil\\tests\\test_unicode.py" % PYTHON)
@cmd
@@ -405,7 +405,7 @@ def test_connections():
"""Run connections tests"""
install()
test_setup()
- sh("%s -m unittest -v psutil.tests.test_connections" % PYTHON)
+ sh("%s psutil\\tests\\test_connections.py" % PYTHON)
@cmd
@@ -413,7 +413,7 @@ def test_contracts():
"""Run contracts tests"""
install()
test_setup()
- sh("%s -m unittest -v psutil.tests.test_contracts" % PYTHON)
+ sh("%s psutil\\tests\\test_contracts.py" % PYTHON)
@cmd