Skip to content

Commit

Permalink
Do not add leading "//tests:" for given test targets (#1079)
Browse files Browse the repository at this point in the history
The original logic is if the given test targets do not start with
`//tests:`, then add this prefix for them.

I'm removing this logic as:
1. We don't actually see any use cases in the workflow
2. It will block us running per-directory suite targets such as
`//tests/mosaic:gpu_tests`
  • Loading branch information
gpupuck authored Oct 3, 2024
1 parent afd9f7f commit 032e978
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/container/test-jax.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,6 @@ else
fi

for t in $*; do
if [[ "$t" != "//tests:"* ]]; then
t="//tests:${t}"
fi
BAZEL_TARGET="${BAZEL_TARGET} $t"
done

Expand Down

0 comments on commit 032e978

Please sign in to comment.