Skip to content

Commit 30e6263

Browse files
committed
avoid cirucular use of pants-plugins/uses_services before the tests that test it
1 parent f9b607b commit 30e6263

File tree

1 file changed

+7
-4
lines changed
  • pants-plugins/uses_services

1 file changed

+7
-4
lines changed

pants-plugins/uses_services/BUILD

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ python_test_utils(
99

1010
python_tests(
1111
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-
},
12+
# Do not enable `uses` for these tests.
13+
# These tests still need the running services, but if the plugin
14+
# is somehow broken, then any failures would prevent these tests
15+
# from running to tell us what is wrong.
16+
# overrides={
17+
# "mongo_rules_test.py": {"uses": ["mongo"]},
18+
# },
1619
)

0 commit comments

Comments
 (0)