From e79a920cadeaacdf871e1a10ef48d33c4d97cb02 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 13 Jan 2022 22:00:08 -0800 Subject: [PATCH 1/1] Announce test names as they are run. This makes it easier to see which test is broken. --- Changelog | 1 + test.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/Changelog b/Changelog index 1bd1d9c..de62e83 100644 --- a/Changelog +++ b/Changelog @@ -4,6 +4,7 @@ - Show the channel URL being fetched. - Use nix 2.3 because 2.4 broke . - Support restricted mode: Allow tarball access with search paths. +- Announce test names as they are run. ## [3.0.5] - 2021-07-09 diff --git a/test.sh b/test.sh index fed0065..81e0c66 100755 --- a/test.sh +++ b/test.sh @@ -9,6 +9,7 @@ find . -name build -prune -o -name dist -prune -o -name '*.py' -print0 | for test in tests/*;do if [ ! -d "$test" ];then + echo "### Running test $test" >&2 "$test" fi done -- 2.44.1