Enable HTML report in Travis build

This commit is contained in:
squidfunk 2017-02-10 15:06:23 +01:00
parent 7199f7ad6c
commit 4fc2a6c02e
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ matrix:
artifacts: artifacts:
debug: true debug: true
paths: paths:
$HOME/gemini-report/* ./gemini-report/*
apt: apt:
sources: sources:
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test

View File

@ -93,7 +93,7 @@ export default (gulp, config, args) => {
/* Start Gemini and return runner upon finish */ /* Start Gemini and return runner upon finish */
return new Gemini(gemini).test(`${config.tests.visual}/suites`, { return new Gemini(gemini).test(`${config.tests.visual}/suites`, {
reporters: ["flat"].concat(process.env.CI ? [] : ["html"]), reporters: ["flat", "html"],
browsers: args.browsers ? [].concat(args.browsers) : null browsers: args.browsers ? [].concat(args.browsers) : null
}) })