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
Currently we have a matrix item in Travis for allowed_failure. This is fine to do, but travis won't mark the build successful or failed until that job has finished even though it won't ultimately effect the outcome. One option we can do is to set:
matrix:
fast_finish: true
Which will tell travis to report the status of the job as soon as all of the non allowed failure builds are done, while still running the allowed failure build.