From 084481d1e0e6bc64c17ca4186dd17b58081ada98 Mon Sep 17 00:00:00 2001 From: Nathan Stocks Date: Mon, 23 May 2022 15:54:27 -0600 Subject: [PATCH] adjust how we install green in a venv to test --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1415997..0319bd3 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ test-installed: source venv-installed/bin/activate; pip3 install -r requirements-optional.txt source venv-installed/bin/activate; python3 setup.py sdist tar zxvf dist/green-$(VERSION).tar.gz - source venv-installed/bin/activate; cd green-$(VERSION) && python3 setup.py install + source venv-installed/bin/activate; cd green-$(VERSION) && pip3 install . source venv-installed/bin/activate; green -vvvv green @rm -rf venv-installed @make clean-silent