Skip to content

Commit

Permalink
fix: coverage issue with saucelabs
Browse files Browse the repository at this point in the history
  • Loading branch information
devversion committed Mar 9, 2017
1 parent ce0e933 commit 6fed865
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/ci/build-and-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ else
fi

# Don't upload coverage for both test modes (browserstack and saucelabs) and inside of PRs.
if [[ "$MODE" == "saucelabs_required" ]] && [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
if [[ "$MODE" == "browserstack_required" ]] && [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
$(npm bin)/gulp ci:coverage
fi

Expand Down
2 changes: 1 addition & 1 deletion test/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ module.exports = (config) => {
if (process.env['TRAVIS']) {
let buildId = `TRAVIS #${process.env.TRAVIS_BUILD_NUMBER} (${process.env.TRAVIS_BUILD_ID})`;

if (process.env['TRAVIS_PULL_REQUEST'] === 'false') {
if (process.env['TRAVIS_PULL_REQUEST'] !== 'false') {
config.preprocessors['dist/@angular/material/**/!(*+(.|-)spec).js'] = ['coverage'];
config.reporters.push('coverage');
}
Expand Down
2 changes: 1 addition & 1 deletion tools/gulp/tasks/coverage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ task('coverage:upload', () => {
throw new Error('No coverage file has been found!');
}

if (!isTravisPushBuild()) {
if (isTravisPushBuild()) {
throw new Error('Coverage results will be only uploaded inside of Travis Push builds.');
}

Expand Down

0 comments on commit 6fed865

Please sign in to comment.