Hi all! Lets say I want run all tests except integ...
# general
s
Hi all! Lets say I want run all tests except integration tests like this
pants test --filter-tag-regex="['-it']" ::
. Is it possible to achieve this behavior by default when I run
pants tests ::
? I don't want to use
[filter].tag_regex
because it will affect all my goals, but I want this to be default for the test goal
Copy code
$ pants help subsystems | grep test
coverage-py             Configuration for Python test coverage measurement.
junit                   The JUnit test framework (<https://junit.org>)
pytest                  The pytest Python test framework (<https://docs.pytest.org/>).
shell-test              Options for Pants' Shell test support.
and why there is no help for
test
subsystem? upd; found it in goals
c
s
Thanks! added my thoughts there