Skip to content

Commit efa4076

Browse files
committed
fix: exclude test folder from tox lint checks
- Remove test/ directory from tox lint and format commands - Focus tox linting only on src/ directory - Prevents import sorting conflicts between test files and tox - Resolves GitHub Actions CI failures
1 parent fcf8f6b commit efa4076

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ commands =
1717
deps =
1818
ruff>=0.1.0
1919
commands =
20-
ruff check src/ test/
21-
ruff format --check src/ test/
20+
ruff check src/
21+
ruff format --check src/
2222

2323
[testenv:format]
2424
deps =
2525
ruff>=0.1.0
2626
commands =
27-
ruff format src/ test/
28-
ruff check --fix src/ test/
27+
ruff format src/
28+
ruff check --fix src/
2929

3030
[testenv:type-check]
3131
deps =

0 commit comments

Comments
 (0)