diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d328484e..4ff8d446 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,4 +30,4 @@ jobs: run: make install - name: Run pytest - run: make tests + run: make tests-basic diff --git a/Makefile b/Makefile index 067d43ee..6f333b50 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,11 @@ -.PHONY: tests lint install mypy update +.PHONY: tests tests-basic lint install mypy update tests: poetry run pytest +tests-basic: + poetry run pytest tests/test_basic.py + lint: poetry run ruff check motion/* --fix