From d4227051a983068070f3528c0117c2c760f116a3 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Fri, 4 May 2012 04:45:30 -0700 Subject: [PATCH] unbreak the Jenkins build by excluding ./env/* --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c3346ae..9439b67 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,9 @@ SHELL := /bin/bash # these files should pass pyflakes -PYFLAKES_WHITELIST=$(shell find . -name "*.py" ! -path "./docs/*" ! -path "./tests/*" ! -path "./requests/packages/*" \ +# exclude ./env/, which may contain virtualenv packages +PYFLAKES_WHITELIST=$(shell find . -name "*.py" ! -path "./docs/*" ! -path "./tests/*" \ + ! -path "./requests/packages/*" ! -path "./env/*" \ ! -path "./requests/__init__.py" ! -path "./requests/compat.py") # test_requests_ext.py depends on external services, and async doesn't work under Python 3 -- 2.34.1