We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pants-plugins/uses_services
1 parent f9b607b commit 30e6263Copy full SHA for 30e6263
pants-plugins/uses_services/BUILD
@@ -9,8 +9,11 @@ python_test_utils(
9
10
python_tests(
11
name="tests",
12
- overrides={
13
- # We use this plugin to validate we can run the tests for it.
14
- "mongo_rules_test.py": {"uses": ["mongo"]},
15
- },
+ # Do not enable `uses` for these tests.
+ # These tests still need the running services, but if the plugin
+ # is somehow broken, then any failures would prevent these tests
+ # from running to tell us what is wrong.
16
+ # overrides={
17
+ # "mongo_rules_test.py": {"uses": ["mongo"]},
18
+ # },
19
)
0 commit comments