summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorShivaram Lingamneni <slingamn@cs.stanford.edu>2012-05-04 04:45:30 -0700
committerShivaram Lingamneni <slingamn@cs.stanford.edu>2012-05-04 04:45:30 -0700
commitd4227051a983068070f3528c0117c2c760f116a3 (patch)
tree81c5c4b562a8b5ca499b5b124de53aafffb594d1 /Makefile
parent3d373e2a164704836f2f086e31d12d49b42780bf (diff)
downloadpython-requests-d4227051a983068070f3528c0117c2c760f116a3.tar.gz
unbreak the Jenkins build by excluding ./env/*
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c3346ae5..9439b67e 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