From fe448f3dda529040e70ba906c45fd35220fc6cb5 Mon Sep 17 00:00:00 2001 From: Nathan Henrie Date: Sun, 11 Sep 2022 08:34:00 -0600 Subject: [PATCH] Add makefile test targets --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 84d9512..a4b3a1c 100644 --- a/Makefile +++ b/Makefile @@ -44,3 +44,11 @@ docs: clean-docs .venv .venv/bin/python -m pip install --upgrade pip .venv/bin/python -m pip install -e . +.PHONY: test +test: .venv + .venv/bin/python -m pip install -e .[test] + py.test tests + +.PHONY: test-all +test-all: + tox