diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2020-02-15 20:20:47 +0100 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2020-02-15 20:20:47 +0100 |
| commit | e05d6dab28addfeca96040a022b5f6a24a3883af (patch) | |
| tree | 9ec3a2786cabb5fd8a05c944eeeac07fabb92b49 | |
| parent | cd55c9d1f47a51f052d73da28381527744a41344 (diff) | |
| download | psutil-e05d6dab28addfeca96040a022b5f6a24a3883af.tar.gz | |
add cmdline opt for parallel testing
| -rwxr-xr-x | psutil/tests/runner.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/psutil/tests/runner.py b/psutil/tests/runner.py index 2e9264bd..3a171bcc 100755 --- a/psutil/tests/runner.py +++ b/psutil/tests/runner.py @@ -154,6 +154,9 @@ def main(): parser.add_option("--last-failed", action="store_true", default=False, help="only run last failed tests") + parser.add_option("--parallel", + action="store_true", default=False, + help="run tests in parallel") opts, args = parser.parse_args() run(last_failed=opts.last_failed) |
