[ci] Add back ruff pyflake checks and allow 3.14t to fail

This commit is contained in:
Fabian Joswig 2026-07-27 21:36:38 +02:00
commit d5162dd280
2 changed files with 2 additions and 1 deletions

View file

@ -13,6 +13,7 @@ on:
jobs: jobs:
pytest: pytest:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.python-version == '3.14t' }}
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:

View file

@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
target-version = "py310" target-version = "py310"
[tool.ruff.lint] [tool.ruff.lint]
select = ["E", "W", "I", "B", "PIE", "PLE", "PLW", "UP", "NPY", "RUF"] select = ["E", "W", "I", "B", "PIE", "PLE", "PLW", "UP", "NPY", "RUF", "F"]
ignore = [ ignore = [
"F403", # star imports in __init__ files are intentional "F403", # star imports in __init__ files are intentional
"E501", # line too long "E501", # line too long