Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
PyYoshi committed Jun 6, 2024
1 parent eea1cef commit eae0354
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,21 @@ jobs:
python -VV
pip install -r requirements-dev.txt
- name: Build
shell: bash
run: |
python -VV
make cython
pip install .
- name: Lint
shell: bash
run: |
python -VV
make lint
ruff check
- name: Test
shell: bash
run: |
python -VV
make test
pytest -vs tests
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cython:

.PHONY: test
test: clean cython
python setup.py install
python setup.py build_ext -i -f
pytest tests

.PHONY: lint
Expand All @@ -33,5 +33,5 @@ lint:

.PHONY: bench
bench: clean cython
python setup.py install
python setup.py build_ext -i -f
python tests/bench.py

0 comments on commit eae0354

Please sign in to comment.