We have a common test pattern where we: 1. Deploy ...
# community-support
j
We have a common test pattern where we: 1. Deploy components into a remote environment 2. Run tests against the newly deployed environment 3. Tear down the newly deployed environment If the tests don't need to be run because they are up-to-date, pulled from cache, marked as disabled, marked as skipped, etc; how do I skip the deploy/teardown tasks also?
v
Don't use tasks, but a shared build service.
👍 1