Update baseline for Edge and adjust run script

This commit is contained in:
squidfunk 2017-02-11 14:22:37 +01:00
parent 885053bfbd
commit 854663ff03
2 changed files with 3 additions and 4 deletions

View File

@ -85,10 +85,9 @@ export default (gulp, config, args) => {
caps.public = "private"
caps.name = id
/* Increase retries to omit flaky tests and make results public */
if (process.env.CI && process.env.TRAVIS) {
/* Adjust configuration for Travis CI */
if (process.env.CI && process.env.TRAVIS)
caps.public = "public"
}
}
/* Start Gemini and return runner upon finish */
@ -99,7 +98,7 @@ export default (gulp, config, args) => {
/* Return runner for graceful stop */
.then(status => {
error = status.errored > 0
error = status.failed + status.errored > 0
return runner
})
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB