We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08e73d commit 1a11294Copy full SHA for 1a11294
tests/run_standalone_tests.sh
@@ -52,6 +52,11 @@ sed -i '$d' $COLLECTED_TESTS_FILE
52
53
# Get test list and run each test individually
54
tests=($(grep -oP '\S+::test_\S+' "$COLLECTED_TESTS_FILE"))
55
+# remove everything before "$test_dir/" in each array element
56
+for i in "${!tests[@]}"; do
57
+ tests[$i]=${tests[$i]#*${test_dir}/}
58
+done
59
+
60
test_count=${#tests[@]}
61
# present the collected tests
62
printf "collected $test_count tests:\n-------------------\n"
0 commit comments