Skip to content

Commit d5162dd

Browse files
committed
[ci] Add back ruff pyflake checks and allow 3.14t to fail
1 parent 45858d0 commit d5162dd

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/pytest.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
jobs:
1414
pytest:
1515
runs-on: ${{ matrix.os }}
16+
continue-on-error: ${{ matrix.python-version == '3.14t' }}
1617
strategy:
1718
fail-fast: false
1819
matrix:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
target-version = "py310"
77

88
[tool.ruff.lint]
9-
select = ["E", "W", "I", "B", "PIE", "PLE", "PLW", "UP", "NPY", "RUF"]
9+
select = ["E", "W", "I", "B", "PIE", "PLE", "PLW", "UP", "NPY", "RUF", "F"]
1010
ignore = [
1111
"F403", # star imports in __init__ files are intentional
1212
"E501", # line too long

0 commit comments

Comments
 (0)