You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
script:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
after_success:
- node_modules/.bin/ember deploy production
I think all the scenarios in my matrix are deploying (at least I'm getting Slack notifications for each).
Is it possible to do the deploy for one scenario? Or separately, after all of them have finished?
The text was updated successfully, but these errors were encountered:
This is definitely more in the realm of configuring travis than ember-try.
The easiest way to do so would be forego use of the travis build matrix and instead use ember try:each ... then the after_success step would only be run after all scenarios had run and passed.
Right now in my
.travis.yml
I have thisI think all the scenarios in my matrix are deploying (at least I'm getting Slack notifications for each).
Is it possible to do the deploy for one scenario? Or separately, after all of them have finished?
The text was updated successfully, but these errors were encountered: