From 59f7b505403f08c5bbbda5f611435e03c605f8d5 Mon Sep 17 00:00:00 2001 From: Jeremy Singer-Vine Date: Sat, 25 Jul 2020 09:15:09 -0400 Subject: [PATCH] Add pip install -e . to make venv --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79b96faf..ebe97622 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,10 @@ PIP=venv/bin/pip venv: python -m venv venv ${PIP} install -U pip - ${PIP} freeze | xargs ${PIP} uninstall -y + ${PIP} freeze --exclude-editable | xargs ${PIP} uninstall -y ${PIP} install -r requirements.txt ${PIP} install -r requirements-dev.txt + ${PIP} install -e . tests: ${PYTHON} -m pytest