From 0a76aa293c2cbcf145c0fce3492f7679df02cb87 Mon Sep 17 00:00:00 2001 From: Suraj Deshmukh Date: Thu, 25 Feb 2016 00:07:21 -0500 Subject: [PATCH] Install requirements before make test In a clean environment where nothing is installed and if I run `make test` then the required modules should be installed first. So before `make test` added pip install from requirements.txt and test-requirements.txt. Fixes issue #574 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 7f42b19e..792651fa 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,8 @@ install: python setup.py install test: + pip install -qr requirements.txt + pip install -qr test-requirements.txt python -m pytest -vv image: