Skip to content

Commit

Permalink
add ruff to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zweihuehner committed Jan 7, 2025
1 parent 754ce8b commit 36bac08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/full_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
pip install pytest pytest-cov ruff
- name: Install tide_analytics
run: |
pip install .[test]
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ build: typecheck test
python -m build

lint:
ruff check $(LIB)/
ruff check $(LIB)

format:
ruff format $(LIB)/
ruff format $(LIB)

test:
pytest --disable-warnings
Expand Down

0 comments on commit 36bac08

Please sign in to comment.