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
Is your feature request related to a problem? Please describe. #193 extracted the rule implementations into separate modules in preparation for #181. The tests for different components are still in /tests, which precludes individual testing of modules.
Describe the solution you'd like
Move files in /tests into respective module directories, such that each module can be tested separately with bazel test //....
Describe alternatives you've considered
Keep everything at the top level and only test together. This has the downside that modules cannot be tested before publishing to BCR at some point in the future.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
#193 extracted the rule implementations into separate modules in preparation for #181. The tests for different components are still in
/tests
, which precludes individual testing of modules.Describe the solution you'd like
Move files in
/tests
into respective module directories, such that each module can be tested separately withbazel test //...
.Describe alternatives you've considered
Keep everything at the top level and only test together. This has the downside that modules cannot be tested before publishing to BCR at some point in the future.
The text was updated successfully, but these errors were encountered: