Skip to content

Commit

Permalink
ci: fix test step
Browse files Browse the repository at this point in the history
  • Loading branch information
u8slvn committed Feb 6, 2024
1 parent f5a9b23 commit 5573cb0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,18 @@ jobs:
with:
python-version: '3.10'

- name: Install pre-commit
run: python -m pip install pre-commit
- name: Install python dependencies
run: |
python -m pip install pre-commit
pip install -r requirements-dev.txt
- name: Check quality
run: make lint

- name: Check tests
run: make test
run: |
make dev
make test
linux:
name: Build linux
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
maturin==1.4.0
pytest==8.0.0
pytest-cov==4.1.0

0 comments on commit 5573cb0

Please sign in to comment.