You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
I am currently not seeing anyjava_test BUILD rules that depend on other java_test BUILD rules. That means that this is currently not an issue. Instead, it is a "best practice."
This is from a test run on JavaRx, where two files ending with .*Test.java (and both importing org.junit.Test) have an edge between them, which causes BFG to
Put each one separately in a java_test
Make one depend on the other, leading to a build breakage (Bazel doesn't allow java_test to depend on another java_test)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
... otherwise Bazel will complain that a
java_test
depends on anotherjava_test
, which is illegal.The text was updated successfully, but these errors were encountered: