From 3e66f47c131bc1f387c6ba65e7a56414663c821a Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sat, 19 Jul 2025 16:53:05 +0200 Subject: [PATCH] Echo the command used in the run tests script --- run_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/run_tests.py b/run_tests.py index f72ce9c7..cedf071b 100755 --- a/run_tests.py +++ b/run_tests.py @@ -33,4 +33,5 @@ if __name__ == "__main__": if args.k: cmd += ["-k", args.k] + print("Calling:", " ".join(cmd)) subprocess.call(cmd, env=env)