diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2020-02-11 23:04:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-11 23:04:38 +0100 |
| commit | 9e2ca978b211993066b0dc41da9aa63429655406 (patch) | |
| tree | cb46fc9c1d42d7681a79be303292ee47b33d40b9 /psutil/tests/runner.py | |
| parent | d8cb832f8cc7ef2695472ec0f752c59c72916274 (diff) | |
| download | psutil-9e2ca978b211993066b0dc41da9aa63429655406.tar.gz | |
Add support for PyPy on Windows (#1686)
Diffstat (limited to 'psutil/tests/runner.py')
| -rwxr-xr-x | psutil/tests/runner.py | 1 |
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') |
