Skip to content

Commit

Permalink
chore(ci): disable coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
anehx committed Oct 2, 2023
1 parent 8a64a6d commit 7c7e7fa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,12 @@ jobs:
env:
COVERAGE: true

- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
with:
files: ./coverage/lcov.info
fail_ci_if_error: true
# https://github.com/ember-cli-code-coverage/ember-cli-code-coverage/issues/386
# - name: Upload coverage report to Codecov
# uses: codecov/codecov-action@v3
# with:
# files: ./coverage/lcov.info
# fail_ci_if_error: true

test-floating:
name: Floating Tests
Expand Down
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,9 @@ module.exports = {
this.options.babel.plugins = [
...(this.options.babel.plugins ?? []),
// eslint-disable-next-line n/no-unpublished-require
...require("ember-cli-code-coverage").buildBabelPlugin(),
...require("ember-cli-code-coverage").buildBabelPlugin({
embroider: true,
}),
];
}
},
Expand Down

0 comments on commit 7c7e7fa

Please sign in to comment.