Compare commits

..

2 commits

Author SHA1 Message Date
ItsDrike 800c63cfc6
ruff: Enable implicit namespace pkgs in .github/scripts
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:30:11 +02:00
ItsDrike 943d2bb8c3
Use poe to run test task (taskipy was replaced) 2024-07-13 13:29:54 +02:00
2 changed files with 4 additions and 1 deletions

View file

@ -27,7 +27,7 @@ jobs:
- name: Run pytest
shell: bash
run: |
poetry run task test
poetry run poe test
python .github/scripts/normalize_coverage.py
mv .coverage .coverage.${{ matrix.platform }}.${{ matrix.python-version }}

View file

@ -124,6 +124,9 @@ max-statements = 250
"D", # docstrings
"S101", # Use of assert
]
".github/scripts/**.py" = [
"INP001", # Implicit namespace package
]
[tool.ruff.format]
line-ending = "lf"