Skip to content

Commit

Permalink
Update to ruff check .
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Jul 18, 2024
1 parent 2881576 commit c9fab11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Run ruff
if: matrix.os != 'windows-latest'
run: |
ruff .
ruff check .
- name: Run test-llm-load-plugins.sh
if: matrix.os != 'windows-latest'
run: |
Expand Down
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
echo " mypy"
pipenv run mypy llm
echo " ruff"
pipenv run ruff .
pipenv run ruff check .

# Run mypy
@mypy:
Expand All @@ -42,7 +42,7 @@

# Run automatic fixes
@fix: cog
pipenv run ruff . --fix
pipenv run ruff check . --fix
pipenv run black .

# Push commit if tests pass
Expand Down

0 comments on commit c9fab11

Please sign in to comment.