aboutsummaryrefslogtreecommitdiff
path: root/python/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* Fix python_cpp test on Mac. Link staticly when building extension, so that ↵Paul Yang2016-10-101-1/+1
| | | | the extension doesn't require installing protobuf library. (#2232)
* Allow conformance test runner to tolerate crashes, and re-enable conformance ↵Josh Haberman2016-01-111-4/+2
| | | | tests.
* Require six>=1.9 for Python.Feng Xiao2015-12-291-1/+1
| | | | | | | | | We use six sub-modules that aren't available in old versions. Not specifying this requirement in the setup will lead to much less readable runtime errors. It's particuarlly problematic for Mac OSX users because the system comes with an old six version 1.4.1 by default. [skip ci]
* Disable python conformnace tests as well.Feng Xiao2015-12-211-2/+4
| | | | | | The testee program crashes on some inputs. Change-Id: Iab27b80e29b7a56c5bd7cb4724531ecf9bb2823a
* Conformance test implementation for Python.Josh Haberman2015-12-021-0/+2
|
* Pass $CC environment variable through tox.Josh Haberman2015-10-281-0/+1
|
* Special-case Clang-only warning flags to Clang.Josh Haberman2015-10-281-2/+0
|
* Removed all warnings from the Python/C++ build.Josh Haberman2015-10-281-1/+1
| | | | | | | | | | | Also made the Travis build ensure that no warnings are present. These builds were previously spewing many warnings, which was hiding warnings for important things like accidentally using C++11-only features. Change-Id: I56caeee9db48bc78756a3e8d7c14874630627037
* fix json_format for python2.6:Jie Luo2015-10-191-2/+1
| | | | | 1, objcect_pair_hook is not supported in python2.6, so duplicated key check is removed in 2.6 2, total_seconds is not suppoted in python2.6, changed to compute seconds directly
* disable tests for python-cpp under py26 as well.Jisi Liu2015-10-061-1/+1
|
* disable py2.6 tests for json_format_testJisi Liu2015-10-051-1/+2
|
* Fix Python 3.4 cpp implementationDan O'Reilly2015-08-311-2/+1
| | | | | | | | | | Fixes the ScalarMapContainer/MessageMapContainer implementations on Python 3.4, by dynamically allocating their PyTypeObjects using PyType_FromSpecWithBases, instead of statically allocating them. This is necessary because Python 3.4+ disallows statically allocating a class with a dynamically allocated parent. Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Fix metaclass issue on Python 3. Get text handling tests passing on Python 3.Dan O'Reilly2015-08-221-3/+3
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Set DYLD_LIBRARY_PATH for OSXDan O'Reilly2015-08-211-0/+1
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Fix travis buildDan O'Reilly2015-08-201-0/+2
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Improve tox.ini, install py26 for travis.Dan O'Reilly2015-08-201-7/+10
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Use tox in travis build. Tweak tox.iniDan O'Reilly2015-08-201-2/+3
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Add some clarifying comments. Remove ez_setup.py.Dan O'Reilly2015-08-201-0/+2
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Make testing cpp implementation optionalDan O'Reilly2015-08-161-2/+1
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Fix --cpp_implementation test failure. Test both pure Python and cpp ↵Dan O'Reilly2015-08-151-0/+1
| | | | | | implementation in tox. Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Disable py3* in toxDan O'Reilly2015-08-141-1/+2
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Build protobuf files in as part of tox runs.Dan O'Reilly2015-08-131-0/+1
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Test under tox: Python 2.6, 2.7, 3.3, 3.4.Tres Seaver2015-01-131-0/+13