Skip to content

Commit 032e978

Browse files
authored
Do not add leading "//tests:" for given test targets (#1079)
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`
1 parent afd9f7f commit 032e978

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

.github/container/test-jax.sh

-3
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,6 @@ else
109109
fi
110110

111111
for t in $*; do
112-
if [[ "$t" != "//tests:"* ]]; then
113-
t="//tests:${t}"
114-
fi
115112
BAZEL_TARGET="${BAZEL_TARGET} $t"
116113
done
117114

0 commit comments

Comments
 (0)