From 258681bbec063d4d281f76adaf90262435ce189f Mon Sep 17 00:00:00 2001 From: Shreya Shankar Date: Tue, 20 Aug 2024 15:17:46 -0700 Subject: [PATCH] Add CI step --- .github/workflows/ci.yml | 2 +- Makefile | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) 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