summaryrefslogtreecommitdiff
path: root/psutil/tests/runner.py
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-02-11 23:04:38 +0100
committerGitHub <noreply@github.com>2020-02-11 23:04:38 +0100
commit9e2ca978b211993066b0dc41da9aa63429655406 (patch)
treecb46fc9c1d42d7681a79be303292ee47b33d40b9 /psutil/tests/runner.py
parentd8cb832f8cc7ef2695472ec0f752c59c72916274 (diff)
downloadpsutil-9e2ca978b211993066b0dc41da9aa63429655406.tar.gz
Add support for PyPy on Windows (#1686)
Diffstat (limited to 'psutil/tests/runner.py')
-rwxr-xr-xpsutil/tests/runner.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/psutil/tests/runner.py b/psutil/tests/runner.py
index 1a28aa43..f8601bad 100755
--- a/psutil/tests/runner.py
+++ b/psutil/tests/runner.py
@@ -177,6 +177,7 @@ def save_failed_tests(result):
with open(FAILED_TESTS_FNAME, 'wt') as f:
for t in result.errors + result.failures:
tname = str(t[0])
+ unittest.defaultTestLoader.loadTestsFromName(tname)
f.write(tname + '\n')