This website requires JavaScript.
Explore
Help
Sign In
OpenSourceArk
/
Ghost
Watch
1
Star
0
Fork
0
You've already forked Ghost
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
03c388db91
Ghost
/
ghost
/
admin
/
config
/
coverage.js
6 lines
101 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Used ember-exam to split tests and run in parallel on Travis (#1112) no issue - improves test run times by splitting the tests into multiple groups and running each in their own browser instance - settled on 2 browser instances as that seems to best fit within Travis' memory and CPU constraints - updated ember-cli-code-coverage config to work with parallel builds
2019-03-11 21:16:01 +03:00
/* eslint-env node */
module
.
exports
=
{
Added codecov.io coverage uploader to CI refs https://linear.app/tryghost/issue/CORE-74/improve-the-test-situation - this commit: - adds the `ember-cli-code-coverage` dependency to collect coverage from ember tests - enables the `COVERAGE` env variable in CI - merges coverage data because tests are run in parallel - adds the codecov GitHub Action into CI so we can upload coverage reports
2021-10-20 17:31:57 +03:00
parallel
:
true
,
Fixed admin coverage reporting (#16512) no issue - Renovate merged in a breaking change to ember-cli-code-coverage which broke our coverage reporting for the admin app - This commit fixes the issue by pinning the version of ember-cli-code-coverage to the last working version and telling renovate to ignore it in the future - It also adds html coverage reporting to make it easier to run locally and see your coverage before pushing
2023-03-28 21:07:28 +03:00
reporters
:
[
'cobertura'
,
'html'
]
Used ember-exam to split tests and run in parallel on Travis (#1112) no issue - improves test run times by splitting the tests into multiple groups and running each in their own browser instance - settled on 2 browser instances as that seems to best fit within Travis' memory and CPU constraints - updated ember-cli-code-coverage config to work with parallel builds
2019-03-11 21:16:01 +03:00
}
;
Reference in New Issue
Copy Permalink