summaryrefslogtreecommitdiff
path: root/scripts/internal/winmake.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/internal/winmake.py')
-rwxr-xr-xscripts/internal/winmake.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py
index c2ee2ab0..185db7ee 100755
--- a/scripts/internal/winmake.py
+++ b/scripts/internal/winmake.py
@@ -328,7 +328,6 @@ def flake8():
def test():
"""Run tests"""
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa %s" % (PYTHON, TSCRIPT))
@@ -337,7 +336,6 @@ def coverage():
"""Run coverage tests."""
# Note: coverage options are controlled by .coveragerc file
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa -m coverage run %s" % (PYTHON, TSCRIPT))
sh("%s -m coverage report" % PYTHON)
sh("%s -m coverage html" % PYTHON)
@@ -348,7 +346,6 @@ def coverage():
def test_process():
"""Run process tests"""
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa -m unittest -v psutil.tests.test_process" % PYTHON)
@@ -356,7 +353,6 @@ def test_process():
def test_system():
"""Run system tests"""
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa -m unittest -v psutil.tests.test_system" % PYTHON)
@@ -364,7 +360,6 @@ def test_system():
def test_platform():
"""Run windows only tests"""
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa -m unittest -v psutil.tests.test_windows" % PYTHON)
@@ -372,7 +367,6 @@ def test_platform():
def test_misc():
"""Run misc tests"""
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa -m unittest -v psutil.tests.test_misc" % PYTHON)
@@ -380,7 +374,6 @@ def test_misc():
def test_unicode():
"""Run unicode tests"""
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa -m unittest -v psutil.tests.test_unicode" % PYTHON)
@@ -388,7 +381,6 @@ def test_unicode():
def test_connections():
"""Run connections tests"""
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa -m unittest -v psutil.tests.test_connections" % PYTHON)
@@ -396,7 +388,6 @@ def test_connections():
def test_contracts():
"""Run contracts tests"""
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa -m unittest -v psutil.tests.test_contracts" % PYTHON)
@@ -409,7 +400,6 @@ def test_by_name():
except IndexError:
sys.exit('second arg missing')
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa -m unittest -v %s" % (PYTHON, name))
@@ -422,7 +412,6 @@ def test_script():
except IndexError:
sys.exit('second arg missing')
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa %s" % (PYTHON, name))
@@ -430,7 +419,6 @@ def test_script():
def test_memleaks():
"""Run memory leaks tests"""
install()
- os.environ['PSUTIL_TESTING'] = '1'
sh("%s -Wa psutil\\tests\\test_memory_leaks.py" % PYTHON)