Compare commits

...

2 commits

Author SHA1 Message Date
ItsDrike 9922734472
coverage: Disable fail_under (code-base specific)
Some checks are pending
CI / validation (push) Waiting to run
CI / unit-tests (push) Waiting to run
CI / Produce Pull Request payload artifact (push) Waiting to run
2024-07-13 13:38:29 +02:00
ItsDrike 72d1fe4ce2
github-workflow: don't run slotscheck (not installed) 2024-07-13 13:37:38 +02:00
2 changed files with 2 additions and 5 deletions

View file

@ -33,7 +33,7 @@ jobs:
restore-keys: "precommit-${{ runner.os }}-${{ steps.poetry_setup.outputs-python-version}}-"
- name: Run pre-commit hooks
run: SKIP=ruff-linter,ruff-formatter,slotscheck,basedpyright pre-commit run --all-files
run: SKIP=ruff-linter,ruff-formatter,basedpyright pre-commit run --all-files
- name: Run ruff linter
run: ruff check --output-format=github --show-fixes --exit-non-zero-on-fix .
@ -41,8 +41,5 @@ jobs:
- name: Run ruff formatter
run: ruff format --diff .
- name: Run slotscheck
run: slotscheck -m mcproto
- name: Run basedpyright type checker
run: basedpyright --warnings .

View file

@ -170,7 +170,7 @@ addopts = "--strict-markers --cov --no-cov-on-fail"
[tool.coverage.report]
precision = 2
fail_under = 20
fail_under = 0
show_missing = true
skip_covered = false
skip_empty = false