aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/tests/unit/beta
Commit message (Collapse)AuthorAge
* 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).
* Merge pull request #7091 from kpayson64/python_str_stuffGravatar Nicolas Noble2016-06-30
|\ | | | | Changed default string type to be str
| * Changed default string type to be strGravatar Ken Payson2016-06-29
| | | | | | | | | | | | | | | | | | This impacts the following APIs: Metadata: Key is always a str, Value is bytes for binary metadata, str otherwise Call Details: str type gRPC method: str type hostname/target: str type
* | Removed _connectivity_channel.ChannelConnectivityTest testGravatar Ken Payson2016-06-28
|/
* Fix secure channel constructionGravatar Nathaniel Manista2016-06-18
|
* Rename FATAL_FAILURE SHUTDOWNGravatar Nathaniel Manista2016-06-16
|
* Fix create_[secure/insecure]_channel argument orderGravatar Ken Payson2016-06-13
|
* Initial Python3 supportGravatar Ken Payson2016-06-10
| | | | | | | | Notable Changes: -Convert all str types to byte types at cython layer (ascii encoding) -Use six for packages that have different names in Python2/Python3 -By default, unit tests are compiled/run in Python2.7 and Python3.4 -Ensure MACOSX_BUILD_TARGET is at least 10.7
* Route Python Beta API through Python GA APIGravatar Nathaniel Manista2016-06-06
|
* Added google call creds/per_rpc interop testsGravatar Ken Payson2016-05-18
|
* Remove unnecessary -2016 from copyrightsGravatar Craig Tiller2016-04-05
|
* Merge pull request #5700 from bluecmd/ssl-defaultsGravatar Jan Tattermusch2016-03-31
|\ | | | | ssl_channel_credentials to use None by default
* | Update copyrightsGravatar Craig Tiller2016-03-31
| |
* | Merge pull request #5650 from leifurhauks/py3_iteritemsGravatar Nicolas Noble2016-03-21
|\ \ | | | | | | replace uses of iteritems with six.iteritems
| | * ssl_channel_credentials to use None by defaultGravatar Christian Svensson2016-03-20
| | | | | | | | | | | | | | | | | | | | | | | | Since the default behavior is quite sane, support just calling ssl_channel_credentials() without explicitly specifying ssl_channel_credentials(None, None, None). This changes the pattern ssl_channel_credentials(server_crt, None, None) to ssl_channel_credentials(server_crt) Signed-off-by: Christian Svensson <blue@cmd.nu>
| * | replace uses of iteritems with six.iteritemsGravatar Leifur Halldor Asgeirsson2016-03-18
| |/
* / make iterators python3-compatibleGravatar Leifur Halldor Asgeirsson2016-03-18
|/
* grpc_set_ssl_roots_override_callback for PythonGravatar Nathaniel Manista2016-02-09
|
* Add metadata auth plugin API supportGravatar Masood Malekghassemi2015-12-07
|
* Make Python testing predictable againGravatar Masood Malekghassemi2015-12-03
This reorganizes the Python code, scraps the current testing infrastructure, and implements a simple test discovery and run script based on the standard Python unittest library so we can trust that our tests are running.