From 683bbe4f3067c8cc7c816e4241ece3febd04cc8e Mon Sep 17 00:00:00 2001 From: Thomas Braun Date: Sun, 8 Sep 2024 14:45:21 +0200 Subject: [PATCH] tools/nwb-read-tests/run.sh: Only search nwb files from artefacts We don't want to find nwb files from e.g. Packages/Basic/input as these might not pass pynwb/dandi validation anymore. --- tools/nwb-read-tests/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nwb-read-tests/run.sh b/tools/nwb-read-tests/run.sh index 794c85e9f5..6db6683b1e 100755 --- a/tools/nwb-read-tests/run.sh +++ b/tools/nwb-read-tests/run.sh @@ -14,7 +14,7 @@ fi top_level=$(git rev-parse --show-toplevel) -list_of_files=$(find $top_level -iname "*-V2.nwb") +list_of_files=$(git ls-files --others '**/*V2.nwb') tag="nwb-read-tests"