From: Scott Worley Date: Fri, 14 Jan 2022 06:00:08 +0000 (-0800) Subject: Announce test names as they are run. X-Git-Tag: v3.0.6~2 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/e79a920cadeaacdf871e1a10ef48d33c4d97cb02?hp=436195f097c503546a7d1d80f4e82964bcdc7392 Announce test names as they are run. This makes it easier to see which test is broken. --- 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