3e12c0ea54
- this will allow us to see which set of tests are consuming the most amount of time in CI - in order to split apart the commands, I've had to override the coverage thresholds for integration+regression tests in order to keep c8 happy - also sprinkled some more labels into the workflows to make things clearer to read
27 lines
557 B
JSON
27 lines
557 B
JSON
{
|
|
"all": true,
|
|
"check-coverage": true,
|
|
"reporter": [
|
|
"html-spa",
|
|
"text-summary",
|
|
"cobertura"
|
|
],
|
|
"reportsDir": "./coverage-e2e",
|
|
"statements": 80,
|
|
"branches": 82,
|
|
"functions": 81,
|
|
"lines": 80,
|
|
"include": [
|
|
"core/{*.js,frontend,server,shared}"
|
|
],
|
|
"exclude": [
|
|
"core/frontend/src/**",
|
|
"core/frontend/public/**",
|
|
"core/frontend/helpers/**",
|
|
"core/server/data/migrations/**",
|
|
"core/server/data/schema/schema.js",
|
|
"!core/server/data/migrations/utils.js",
|
|
"core/server/web/api/testmode/**"
|
|
]
|
|
}
|