diff --git a/.github/codecov.yaml b/.github/codecov.yaml index 3f76e9b5..9edb9fa6 100644 --- a/.github/codecov.yaml +++ b/.github/codecov.yaml @@ -4,3 +4,6 @@ coverage: default: # advanced settings informational: true + patch: + default: + threshold: 0% diff --git a/CHANGELOG.md b/CHANGELOG.md index bad4aefc..32ad0405 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,11 +28,12 @@ _This release is scheduled to be released on 2023-04-01._ - Use develop as target branch for dependabot - Update issue template and contributing doc -- The weather modules clearly separates precipation amount and probability (risk of rain/snow) +- The weather modules clearly separates precipitation amount and probability (risk of rain/snow) - This requires all providers that only supports probability to change the config from `showPrecipitationAmount` to `showPrecipitationProbability`. - Update tests for weather and calendar module - Changed updatenotification module for MagicMirror repo only: Send only notifications for `master` if there is a tag on a newer commit - Update dates in Calendar widgets every minute +- Cleanup jest coverage for patches ### Fixed diff --git a/package.json b/package.json index 7e3b2bd0..6877aee6 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "install-fonts": "echo \"Installing fonts ...\n\" && cd fonts && npm install --loglevel=error --no-audit --no-fund --no-update-notifier", "postinstall": "npm run install-vendor && npm run install-fonts && echo \"MagicMirror² installation finished successfully! \n\"", "test": "NODE_ENV=test jest -i --forceExit", - "test:coverage": "NODE_ENV=test jest --coverage -i --forceExit", + "test:coverage": "NODE_ENV=test jest --coverage -i --verbose false --forceExit", "test:electron": "NODE_ENV=test jest --selectProjects electron -i --forceExit", "test:e2e": "NODE_ENV=test jest --selectProjects e2e -i --forceExit", "test:unit": "NODE_ENV=test jest --selectProjects unit -i --forceExit",