From 70f20f45285f7c366a57d71c095e507aed60666f Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Tue, 22 Nov 2016 13:57:31 -0500 Subject: [PATCH] Add additional dependencies which are needed When running 'make' if one does not have sure or python-subunit installed it will fail. Adding these to the dependencies. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 98bf6b731..61c977a17 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: check_dependencies unit functional doctest filename=lettuce-`python -c 'import lettuce;print lettuce.version'`.tar.gz export PYTHONPATH:= ${PWD} -export LETTUCE_DEPENDENCIES:= nose mox sphinx lxml django fuzzywuzzy mock +export LETTUCE_DEPENDENCIES:= nose mox sphinx lxml django fuzzywuzzy mock python-subunit sure check_dependencies: @echo "Checking for dependencies to run tests ..."