Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
- name: 'Lint with ruff'
run: |
# stop the build if there are Python syntax errors or undefined names
ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
# default set of ruff rules with GitHub Annotations
ruff --output-format=github --target-version=py37 .
ruff check --output-format=github --target-version=py37 .
- name: 'Test with pytest'
run: |
pytest
4 changes: 2 additions & 2 deletions .github/workflows/python_selfhost.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
- name: 'Lint with ruff'
run: |
# stop the build if there are Python syntax errors or undefined names
ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
# default set of ruff rules with GitHub Annotations
ruff --output-format=github --target-version=py37 .
ruff check --output-format=github --target-version=py37 .
- name: 'Test with pytest'
run: |
pytest
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ html5lib==1.1
pyotp==2.9.0
pytest==8.4.0
requests==2.32.4
ruff==0.4.9
ruff==0.11.13
six==1.17.0
typing_extensions==4.13.2
urllib3==2.4.0
Expand Down