diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2020-05-05 11:16:25 -0700 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2020-05-05 11:16:25 -0700 |
| commit | 8ad353bc515d7765e7dc3dfaaa8f9f6db4f85aba (patch) | |
| tree | bc7f0d5834fc43ace1f4b6113859e73f2da353e4 /scripts | |
| parent | 15b35646d95b617b04a2e556f1b0902d3f64c3cb (diff) | |
| download | psutil-8ad353bc515d7765e7dc3dfaaa8f9f6db4f85aba.tar.gz | |
fix some memleak tests on win
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/internal/winmake.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py index c7091ac4..4f1e65ed 100755 --- a/scripts/internal/winmake.py +++ b/scripts/internal/winmake.py @@ -397,11 +397,11 @@ def lint(): sh("%s -m flake8 %s" % (PYTHON, py_files), nolog=True) -def test(name=""): +def test(name=RUNNER_PY): """Run tests""" build() test_setup() - sh("%s %s %s" % (PYTHON, RUNNER_PY, name)) + sh("%s %s" % (PYTHON, name)) def coverage(): |
