diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6de63e79..a4dffeb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,6 @@ jobs: - name: Lint run: | make lint - make clippy - name: Test Python run: | diff --git a/Makefile b/Makefile index 892d42e5..214678c8 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ clean : clean-python clean-rust refresh : clean-python rust -quick-check : refresh lint coverage +quick-check : refresh test-rust lint coverage ## Odd langs ########################### @@ -86,7 +86,7 @@ PYTEST = $(PYTHON) -m unittest test : test-rust $(PYTEST) discover -v -test-all : compile +test-all : test-rust compile RUN_SLOW=1 $(MAKE) test test-tree : compile