From 96f47b2baf8dd1e261fc2bb3d8115cdb892e31cf Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sun, 13 Oct 2019 09:40:30 +0100 Subject: [PATCH] update the Makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 05bc9d4..a7aee7b 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ SHELL=/bin/bash .PHONY: run run: venv - ./sensors + python3 sensors test: pytest --cov=. --cov-report=html @@ -13,6 +13,7 @@ developement: ( \ source venv/bin/activate; \ pip3 install -r requirements/development.txt; \ + pip3 install . -e; \ ) venv: @@ -20,6 +21,7 @@ venv: ( \ source venv/bin/activate; \ pip3 install -r requirements/base.txt; \ + pip3 install -e ) clean: