From 2b547b9405fe007224e9e77a7a4bb4ebf4d7c45d Mon Sep 17 00:00:00 2001 From: javi Date: Mon, 2 Nov 2020 20:44:15 +0100 Subject: [PATCH] add tests and tox action --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 60370f7b..4a8f6c1f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,9 @@ .PHONY: docs -test: +tox: pip install tox tox --recreate +test: + pytest -v -s tests/ flake8: black --check src tests flake8 src tests