aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/interop
Commit message (Collapse)AuthorAge
* Fix gevent test flakesGravatar kpayson642018-04-02
|
* 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
|
* Require port and server_port interop flagsGravatar Nathaniel Manista2017-11-15
| | | | Also sort arguments to ArgumentParser.add_argument in idiomatic order.
* Clean up even more uses of gRPC in _pb2.py filesGravatar Nathaniel Manista2017-09-21
|
* auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
|
* Update Python interop tests to use google-auth packageGravatar Ken Payson2017-05-12
| | | | | The oauth2client test dependency is still needed as it used by the beta API unit tests.
* Update tests to current gRPC code elementsGravatar Nathaniel Manista2017-03-17
|
* Connect to "localhost" from interop clients.Gravatar Paul Marks2017-02-07
| | | | | | | | This is for compatibility with IPv6-only environments; see the Google bug b/32531998. Note that InteropClient.cs and http2_client.cc don't appear to be tested by our internal branch, but I've included them for consistency.
* Re-run yapf code, and pin versionGravatar Ken Payson2017-02-06
|
* ran yapfGravatar David Garcia Quintas2017-01-30
|
* Run yapf over Python codeGravatar Masood Malekghassemi2017-01-23
|
* Run Python formattingGravatar Masood Malekghassemi2017-01-17
|
* Rename interop-as-a-unit-test "intraop"Gravatar Nathaniel Manista2016-12-29
| | | | | It's been confusing that these tests have been called "interop" but are not actually tests of interoperation.
* v1.0.x → master upmergeGravatar Nathaniel Manista2016-12-16
|\ | | | | | | | | | | | | | | | | | | Manual changes: - Fixed use of Exception.message in _invalid_metadata_test.py - Fixed merge of one_failed_as_unavailable in rpc_server_spec.rb - Added "set -e" to generate_build_additions.sh
| * Drop unnecessary sleep in interop testGravatar Nathaniel Manista2016-12-09
| |
| * Correct Python cancel_after_begin interop testGravatar Nathaniel Manista2016-12-09
| | | | | | | | | | | | | | | | | | | | It was a mistake that requests might be sent; the test specification calls for no requests to be sent. It was a mistake that the response future's cancelled() method was called; the cancelled() method returns something more like "was this object's cancel() method called earlier?" than "did the RPC terminate with status code CANCELLED?". Since it's something that we'd well enough like to work I've retained the cancelled() call with a different failure message.
* | Add default arguments to python interop clientGravatar Noah Eisen2016-11-17
| |
* | Implement the advanced interop tests for PythonGravatar Noah Eisen2016-10-25
|/ | | | | | | Add the code for three new interop tests: unimplemented_method, unimplemented_service, and custom_metadata. Fix and refactor the code for status_code_and_message.
* Migrate distrib, interop, and stress to GA APIGravatar Nathaniel Manista2016-08-11
|
* Implemented python status_code_and_message interop testGravatar Ken Payson2016-07-11
|
* Fix interop tests on WindowsGravatar Masood Malekghassemi2016-07-08
|
* 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).