aboutsummaryrefslogtreecommitdiffhomepage
path: root/python/tox.ini
Commit message (Collapse)AuthorAge
* Drop python2.6Gravatar Jie Luo2017-08-22
| | | | | | | Jenkins complains for python 2.6 DEPRECATION: Python 2.6 is no longer supported by the Python core team ERROR: InvocationError: '/tmp/protobuf/protobuf/python/.tox/py26-cpp/bin/python setup.py -q build_py' https://grpc-testing.appspot.com/job/protobuf_pull_request/1502/testReport/junit/(root)/python_cpp/python_cpp/
* Add Python 3.5 3.6Gravatar Jie Luo2017-08-22
|
* Revert "Drop Python 3.3 from testing & add Python 3.5, 3.6 (#3512)" (#3524)Gravatar Jie Luo2017-08-18
| | | This reverts commit 703f414ca6102e669ece2dcd5f7d9c2b05ca222e.
* Drop Python 3.3 from testing & add Python 3.5, 3.6 (#3512)Gravatar cclauss2017-08-18
| | | | | | | | * Drop Python 3.3 from testing & add Python 3.5, 3.6 Python 3.3 goes [EOL](https://docs.python.org/devguide/index.html#branchstatus) next month. * Sync test.sh with the Python versions in tox.ini
* Set PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION for pure python comformance testGravatar Jie Luo2017-07-17
|
* Fix python_cpp test on Mac. Link staticly when building extension, so that ↵Gravatar Paul Yang2016-10-10
| | | | the extension doesn't require installing protobuf library. (#2232)
* Allow conformance test runner to tolerate crashes, and re-enable conformance ↵Gravatar Josh Haberman2016-01-11
| | | | tests.
* Require six>=1.9 for Python.Gravatar Feng Xiao2015-12-29
| | | | | | | | | 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.Gravatar Feng Xiao2015-12-21
| | | | | | The testee program crashes on some inputs. Change-Id: Iab27b80e29b7a56c5bd7cb4724531ecf9bb2823a
* Conformance test implementation for Python.Gravatar Josh Haberman2015-12-02
|
* Pass $CC environment variable through tox.Gravatar Josh Haberman2015-10-28
|
* Special-case Clang-only warning flags to Clang.Gravatar Josh Haberman2015-10-28
|
* Removed all warnings from the Python/C++ build.Gravatar Josh Haberman2015-10-28
| | | | | | | | | | | 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:Gravatar Jie Luo2015-10-19
| | | | | 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.Gravatar Jisi Liu2015-10-06
|
* disable py2.6 tests for json_format_testGravatar Jisi Liu2015-10-05
|
* Fix Python 3.4 cpp implementationGravatar Dan O'Reilly2015-08-31
| | | | | | | | | | 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.Gravatar Dan O'Reilly2015-08-22
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Set DYLD_LIBRARY_PATH for OSXGravatar Dan O'Reilly2015-08-21
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Fix travis buildGravatar Dan O'Reilly2015-08-20
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Improve tox.ini, install py26 for travis.Gravatar Dan O'Reilly2015-08-20
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Use tox in travis build. Tweak tox.iniGravatar Dan O'Reilly2015-08-20
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Add some clarifying comments. Remove ez_setup.py.Gravatar Dan O'Reilly2015-08-20
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Make testing cpp implementation optionalGravatar Dan O'Reilly2015-08-16
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Fix --cpp_implementation test failure. Test both pure Python and cpp ↵Gravatar Dan O'Reilly2015-08-15
| | | | | | implementation in tox. Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Disable py3* in toxGravatar Dan O'Reilly2015-08-14
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Build protobuf files in as part of tox runs.Gravatar Dan O'Reilly2015-08-13
| | | | Signed-off-by: Dan O'Reilly <oreilldf@gmail.com>
* Test under tox: Python 2.6, 2.7, 3.3, 3.4.Gravatar Tres Seaver2015-01-13