only require thrift if we are going to use it

This commit is mostly for travis since thrift has trouble downloading
at times.
This commit is contained in:
Honza Kral
2013-10-02 00:56:23 +02:00
parent a24337ca6b
commit b3c1170092
+4 -3
View File
@@ -2,8 +2,7 @@
from os.path import join, dirname
from setuptools import setup, find_packages
import sys
import os
VERSION = (0, 4, 1)
__version__ = VERSION
@@ -30,7 +29,9 @@ if sys.version_info[:2] == (2, 6):
tests_require.append('unittest2')
if sys.version_info[0] == 2:
tests_require.append('thrift==0.9.1')
# only require thrift if we are going to use it
if os.environ.get('TEST_ES_CONNECTION', None) == 'ThriftConnection':
tests_require.append('thrift==0.9.1')
tests_require.append('pylibmc==1.2.3')
setup(