From 80d607395dcdaf582f282a7044ec07645aa599f1 Mon Sep 17 00:00:00 2001 From: Anatolii Sakhnik Date: Tue, 23 Apr 2024 10:54:08 +0300 Subject: [PATCH] Print a message with test command --- test/all.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/all.py b/test/all.py index 3e35e8f1..44a03717 100755 --- a/test/all.py +++ b/test/all.py @@ -35,7 +35,8 @@ from prerequisites import Prerequisites Prerequisites() - res = subprocess.run(["nvim", "-l", "run-tests.lua", ".", - "--no-keep-going"]) + test_cmd = ["nvim", "-l", "run-tests.lua", ".", "--no-keep-going"] + print(f"Run `{' '.join(test_cmd)}`") + res = subprocess.run(test_cmd) if res.returncode != 0: raise RuntimeError("Lua tests failed")