follow up on the `--no-fast` thing: is that flag o...
# general
a
follow up on the
--no-fast
thing: is that flag or something similar available for
compile
as well? (I didn't seem to find them with a quick
./pants compile --help | grep 'fast'
We did recently run into a problem where mixing targets produced different results than running separately when we're compiling changed targets, and as a result had to split them all up and run in a loop.
w
it's specific to test tasks
it's implemented by a superclass of
pytest
and
junit
... so the full name is
--no-test-pytest-fast
or
--no-test-junit-fast
, etc
a
sounds like exactly what I found for test 🙂