Skip to content

Commit

Permalink
run all tests in one workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ivvist committed Dec 1, 2024
1 parent b607db1 commit 6b383f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test_subfolders_full.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ for dir in $(find . -name "go.mod" -not -path "./go.mod" -exec dirname {} \;); d
echo "Running tests in $dir..."

# Run tests normally in all other directories
(cd "$dir" && go test ./... ) || any_test_failed=1
(cd "$dir" && go test ./... -race) || any_test_failed=1
done

# Check if any test failed and exit with a non-zero status
Expand Down

0 comments on commit 6b383f3

Please sign in to comment.