Skip to content

Commit

Permalink
Fix linting commands in tox.ini to specify example paths
Browse files Browse the repository at this point in the history
Signed-off-by: Tsuyoshi Hombashi <[email protected]>
  • Loading branch information
thombashi committed Dec 29, 2024
1 parent 95d53b7 commit f241676
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ commands =
ruff check

[testenv:lint-examples]
changedir = examples
deps =
jupyter
mypy>=1
Expand All @@ -98,10 +97,10 @@ deps =
types-click
ruff>=0.8
commands =
jupyter nbconvert pathvalidate_examples.ipynb --to python
pyright
ruff check
ruff format --check
jupyter nbconvert examples/pathvalidate_examples.ipynb --to python
pyright examples
ruff check examples
ruff format --check examples

[testenv:readme]
changedir = docs
Expand Down

0 comments on commit f241676

Please sign in to comment.