From 179f6e46bb45c2859bd25a8d273e80a4f92a316a Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Mon, 4 Mar 2024 06:21:54 +0300 Subject: [PATCH] #185 doc --- steps/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steps/tests.sh b/steps/tests.sh index 18cbf3c9..f50805ab 100755 --- a/steps/tests.sh +++ b/steps/tests.sh @@ -50,7 +50,7 @@ find "${LOCAL}/tests" -type f -name '*.sh' | sort | while IFS= read -r test; do if ! TARGET="${tgt}" "${test}" "${t}" "${stdout}"; then cat "${stdout}" echo "❌ Non-zero exit code (TARGET=${tgt})" - echo "You can run this particular test in isolation: make test TEST=${name}" + echo "You can run this particular test in isolation: make test TEST=tests/${name}" exit 1 fi done