Fix travis build

Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
This commit is contained in:
Dan O'Reilly 2015-08-20 20:49:45 -04:00
parent 5de2a81b01
commit 3791c8051a
2 changed files with 3 additions and 0 deletions

View file

@ -146,6 +146,7 @@ if __name__ == '__main__':
)
os.environ['PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION'] = 'cpp'
# Keep this list of dependencies in sync with tox.ini.
install_requires = ['six', 'setuptools']
if sys.version_info <= (2,7):
install_requires.append('ordereddict')

View file

@ -6,6 +6,7 @@ envlist =
py{26,27}-{cpp,python}
[testenv]
usedevelop=true
setenv =
cpp: LD_LIBRARY_PATH={toxinidir}/../src/.libs
cpp: PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp
@ -16,6 +17,7 @@ commands =
python: python setup.py -q test -q
cpp: python setup.py -q test -q --cpp_implementation
deps =
# Keep this list of dependencies in sync with setup.py.
six
py26: ordereddict
py26: unittest2