OLD | NEW |
(Empty) | |
| 1 [tox] |
| 2 envlist = |
| 3 py{26,27,33,34}-{cpp,python} |
| 4 |
| 5 [testenv] |
| 6 usedevelop=true |
| 7 passenv = CC |
| 8 setenv = |
| 9 cpp: LD_LIBRARY_PATH={toxinidir}/../src/.libs |
| 10 cpp: DYLD_LIBRARY_PATH={toxinidir}/../src/.libs |
| 11 cpp: PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp |
| 12 commands = |
| 13 python setup.py -q build_py |
| 14 python: python setup.py -q build |
| 15 cpp: python setup.py -q build --cpp_implementation --warnings_as_errors |
| 16 python: python setup.py -q test -q |
| 17 cpp: python setup.py -q test -q --cpp_implementation |
| 18 # TODO(xiaofeng): Disabled because the Python testee program crashes on |
| 19 # some conformance test inputs. |
| 20 # python: python setup.py -q test_conformance |
| 21 # cpp: python setup.py -q test_conformance --cpp_implementation |
| 22 deps = |
| 23 # Keep this list of dependencies in sync with setup.py. |
| 24 six>=1.9 |
| 25 py26: ordereddict |
| 26 py26: unittest2 |
OLD | NEW |