ci: disable test coverage temporarly
Currently the project is not tested automatically. It can be improved later, and then revert this commit.
This commit is contained in:
parent
86d1b404f4
commit
ce3b5e7b58
@ -17,12 +17,12 @@ test:
|
||||
- "npm run lint:eslint"
|
||||
- "npm run lint:typescript"
|
||||
- "npm run test"
|
||||
artifacts:
|
||||
paths:
|
||||
- "coverage/"
|
||||
reports:
|
||||
coverage_report:
|
||||
coverage_format: "cobertura"
|
||||
path: "coverage/cobertura-coverage.xml"
|
||||
junit: "junit.xml"
|
||||
coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
|
||||
# artifacts:
|
||||
# paths:
|
||||
# - "coverage/"
|
||||
# reports:
|
||||
# coverage_report:
|
||||
# coverage_format: "cobertura"
|
||||
# path: "coverage/cobertura-coverage.xml"
|
||||
# junit: "junit.xml"
|
||||
# coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
|
||||
|
@ -5,7 +5,7 @@
|
||||
"fakeTimers": {
|
||||
"enableGlobally": true
|
||||
},
|
||||
"collectCoverage": true,
|
||||
"collectCoverage": false,
|
||||
"coverageDirectory": "coverage",
|
||||
"coverageReporters": ["text", "text-summary", "cobertura"],
|
||||
"collectCoverageFrom": [
|
||||
|
@ -14,7 +14,7 @@
|
||||
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
|
||||
"lint:typescript": "tsc --noEmit",
|
||||
"lint:staged": "lint-staged",
|
||||
"test": "jest --coverage --reporters=default --reporters=jest-junit",
|
||||
"test": "jest --reporters=default --reporters=jest-junit",
|
||||
"supabase": "supabase --workdir \"./infrastructure/repositories\"",
|
||||
"postinstall": "husky"
|
||||
},
|
||||
|
Reference in New Issue
Block a user