diff --git a/test/all.py b/test/all.py index 3e35e8f..44a0371 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")