aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/reflection
Commit message (Collapse)AuthorAge
* Clean up server and channel objects in testsGravatar Eric Gribkoff2018-12-21
|
* Bazel rules for Python grpcio_reflectionGravatar Naresh2018-11-01
|
* Revert "Bazel rules for Python grpcio_reflection"Gravatar Mehrdad Afshari2018-10-12
| | | | This reverts commit 2e78e516ad8cb45cff705581625f85e5033b4e5b.
* Bazel rules for Python grpcio_reflectionGravatar Naresh2018-10-11
|
* Add SERVICE_NAME to reflection/healthGravatar Mehrdad Afshari2018-07-26
|
* Upgrade yapf to 0.20.0Gravatar Mehrdad Afshari2018-01-02
| | | | Upgrade yapf version to 0.20.0 and reformat Python files.
* Disable so_reuseport for Python testsGravatar Ken Payson2017-12-20
|
* Unskip reflection unit test since proto is fixedGravatar Mehrdad Afshari2017-08-22
|
* Update python reflection tests to cover the higher level APIGravatar Mehrdad Afshari2017-06-13
|
* auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
|
* Add pylint comment to justify unused importGravatar Mehrdad Afshari2017-03-23
|
* Temporarily disable testFileContainingExtensionGravatar Mehrdad Afshari2017-03-23
| | | | | | | | | | | | | | | | | | There is a behavioral discrepency in `DescriptorPool.FindFileContainingSymbol` between the two implementations of the protobuf python library (one of which is purely python, and the other utilizes a python extension library written in C++). protobuf on PyPI is distributed via various prebuilt wheels, and our CI setup fetches the relevant one for each platform. Our Linux instances end up fetching a pre-compiled C++ version of the library, whereas our Mac and Windows builders automatically get the pure python version. This test fails (and our reflection implementation itself) succeeds with the C++ implementation but fails with the pure python version. The test will be temporarily disabled pending a fix for https://github.com/google/protobuf/issues/2882
* Test all_extension_numbers_of_typeGravatar Mehrdad Afshari2017-03-23
|
* Fix and un-skip testFileContainingExtensionGravatar Mehrdad Afshari2017-03-23
| | | | | | Fix and un-skip the test for _file_containing_extension in python reflection service to refer to the correct proto and expect the right object to be returned. Enable it too.
* Update tests to current gRPC code elementsGravatar Nathaniel Manista2017-03-17
|
* Re-run yapf code, and pin versionGravatar Ken Payson2017-02-06
|
* Run Python formattingGravatar Masood Malekghassemi2017-01-17
|
* v1.0.x → master upmergeGravatar Nathaniel Manista2017-01-06
| | | | | | | | | | | | | Manual resolution: - New test added in src/python/grpcio_test/tests/tests.json - Timeout-related edits resolved in tools/run_tests/run_tests.py Manual changes: - Pass request iterator rather than request sequence in _reflection_servicer_test.py
* Un-namespace Python packagesGravatar Masood Malekghassemi2016-12-12
| | | | | Setuptools was updated and our hacky namespace-package-chickens came back to roost. This removes the unsupported namespace package hacks.
* Partially implement gRPC Python server reflectionGravatar Masood Malekghassemi2016-10-20
Some features relating to proto2 extension querying are missing due to missing upstream features required to support them (see https://github.com/google/protobuf/issues/2248).