for all intents and purposes exclude completely. b...
# general
f
for all intents and purposes exclude completely. basic use case is have some integration tests that need infra spun up to run. generally running all my tests via
pants test.junit ./::
, so if adding in those integration tests, want it to be
pants test.junit --exclude-target-regexp="+['integrationTests.*']"
. I’m able to ignore fine using that regex in test-changed (used in conjunction with
--parent=HEAD^ --include-dependees=transitive
).