From 449831504ca11f16aa67d336fd88c17e28222768 Mon Sep 17 00:00:00 2001 From: Emilio Pozuelo Monfort Date: Tue, 10 Nov 2020 14:02:20 +0100 Subject: sectracker_test/run.py: run tests under python3 --- lib/python/sectracker_test/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/python/sectracker_test/run.py b/lib/python/sectracker_test/run.py index 44fa675fcb..ced75d56ae 100644 --- a/lib/python/sectracker_test/run.py +++ b/lib/python/sectracker_test/run.py @@ -47,7 +47,7 @@ for name in files: continue fullpath = "%s/%s" % (ourpath, name) print("* Running", name) - p = subprocess.Popen(("python", "--", fullpath), env=env) + p = subprocess.Popen(("python3", "--", fullpath), env=env) ret = p.wait() if ret != 0: print("Test exited with status", ret) -- cgit v1.2.3