From 8ad353bc515d7765e7dc3dfaaa8f9f6db4f85aba Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Tue, 5 May 2020 11:16:25 -0700 Subject: fix some memleak tests on win --- scripts/internal/winmake.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/internal') 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(): -- cgit v1.2.1