aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/commands.py
Commit message (Collapse)AuthorAge
* skip test with geventGravatar Eric Gribkoff2018-12-26
|
* disable broken gevent testGravatar Eric Gribkoff2018-12-21
|
* removed unused traceback importGravatar Eric Gribkoff2018-12-19
|
* Revert "Revert "re-enable ExitTest""Gravatar Eric Gribkoff2018-12-17
| | | | This reverts commit 1bd231605a341bea7ac841b72be212bb8df12f25.
* Revert "re-enable ExitTest"Gravatar Juanli Shen2018-12-17
|
* re-enable unit._exit_test.ExitTestGravatar Eric Gribkoff2018-12-12
|
* Update comments && modify function nameGravatar Lidi Zheng2018-11-29
|
* Disable three subchannel unit tests for geventGravatar Lidi Zheng2018-11-28
|
* Migrate tests from Python 3.4 to Python 3.7Gravatar Lidi Zheng2018-11-06
|
* Ban gevent testGravatar ncteisen2018-10-15
|
* Support gRPC Python client-side fork with epoll1Gravatar Eric Gribkoff2018-08-22
| | | | | | | | | | | | | | | | | A process may fork after invoking grpc_init() and use gRPC in the child if and only if the child process first destroys all gRPC resources inherited from the parent process and invokes grpc_shutdown(). Subsequent to this, the child will be able to re-initialize and use gRPC. After fork, the parent process will be able to continue to use existing gRPC resources such as channels and calls without interference from the child process. To facilitate gRPC Python applications meeting the above constraints, gRPC Python will automatically destroy and shutdown all gRPC Core resources in the child's post-fork handler, including cancelling in-flight calls (see detailed design below). From the client's perspective, the child process is now free to create new channels and use gRPC.
* Disable LRU cache test on geventGravatar kpayson642018-06-13
|
* Fix gevent test flakesGravatar kpayson642018-04-02
|
* Initial gevent supportGravatar kpayson642018-03-27
| | | | | Because some cpp code ends up leaking into cython, we change the cython generator to generate cpp code.
* Kill (grpcio_tests/)commands.BuildProtoModulesGravatar Nathaniel Manista2017-09-13
| | | | | | In 1ff429da2a94bc79300ebce3f8aae7efb10e9a75 it appears to have been copied out of src/python/grpcio/commands.py and not used, and it seems to have remained without use since.
* auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
|
* fix undefined nameGravatar thinkerou2017-02-08
|
* Run yapf over Python codeGravatar Masood Malekghassemi2017-01-23
|
* Run Python formattingGravatar Masood Malekghassemi2017-01-17
|
* 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.
* Polish grpcio_health_checking packageGravatar Ken Payson2016-07-18
| | | | | | | -Rename namespace to grpc_health->grpc to match spec -Proper use of NOT_FOUND status code -Improve testing -Add source distribution to artifact build
* Organize Python tests to use grpcio-tools directlyGravatar Masood Malekghassemi2016-07-01
Moves all tests into a separate package. This does not change existing supported means of running tests (e.g. through run_tests.py).