Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge pull request #7242 from yang-g/import | kpayson64 | 2016-07-11 |
|\ | | | | | Remove unused file | ||
* | | Added timeout to port server | Ken Payson | 2016-07-09 |
| | | |||
| * | another one | yang-g | 2016-07-08 |
|/ | |||
* | Merge pull request #7195 from soltanmm/winfix | kpayson64 | 2016-07-08 |
|\ | | | | | Fix Python interop unit-tests on Windows | ||
| * | Make build_python.sh script smarter | Masood Malekghassemi | 2016-07-08 |
| | | | | | | | | | | Now reasonable defaults are auto-detected by platform (and by specific Python implementation). | ||
| * | Sanitize environment variables in run_tests `jobset` | Masood Malekghassemi | 2016-07-08 |
| | | |||
| * | Make Python tests run on Windows | Masood Malekghassemi | 2016-07-08 |
| | | |||
| * | Build Python distributions standalone for Windows | Masood Malekghassemi | 2016-07-08 |
| | | |||
| * | Make Python build standalone on Windows | Masood Malekghassemi | 2016-07-08 |
| | | |||
* | | Merge pull request #7260 from kpayson64/ga_performance_tests | kpayson64 | 2016-07-08 |
|\ \ | |/ |/| | Migrated python performance tests to use GA API | ||
* | | Merge pull request #7219 from jcanizales/merge-0.14-into-master | makdharma | 2016-07-08 |
|\ \ | | | | | | | Merge 0.14 into master | ||
| | * | Migrated python performance tests to use GA API | Ken Payson | 2016-07-06 |
| | | | |||
* | | | Merge branch 'protobuf-submodule-update' of ↵ | David Garcia Quintas | 2016-07-06 |
|\ \ \ | | | | | | | | | | | | | https://github.com/nicolasnoble/grpc into fix_cpp_deps | ||
* | | | | Added missing dependencies to grpc++_base | David Garcia Quintas | 2016-07-06 |
| |_|/ |/| | | |||
| * | | Pinning to protobuf submodule 3.0.0-beta-3.3. | Nicolas "Pixel" Noble | 2016-07-07 |
|/ / | |||
* | | Merge pull request #6791 from soltanmm/pain | kpayson64 | 2016-07-06 |
|\ \ | | | | | | | Make running individual Python tests less painful | ||
* \ \ | Merge pull request #7197 from kpayson64/port_server_fix | Nicolas Noble | 2016-07-06 |
|\ \ \ | | | | | | | | | Change port_server.py to use port 32766 | ||
* \ \ \ | Merge pull request #7210 from ctiller/no-more-zookeeper | Nicolas Noble | 2016-07-01 |
|\ \ \ \ | | | | | | | | | | | Expunge all references to zookeeper | ||
| | | | * | Merge master into merge-0.14-into-master | Jorge Canizales | 2016-07-01 |
| | | | |\ | |_|_|_|/ |/| | | | | | | | | | The protobuf commit conflicted. Resolved to the latest one. | ||
* | | | | | Merge pull request #6893 from y-zeng/handler_http_response | Nicolas Noble | 2016-07-01 |
|\ \ \ \ \ | | | | | | | | | | | | | Add http2 status code in error_message if it's not 200 | ||
* \ \ \ \ \ | Merge remote-tracking branch 'google/master' into contrib-cmake | Nicolas "Pixel" Noble | 2016-07-02 |
|\ \ \ \ \ \ | |||
| | | * | | | | Expunge all references to zookeeper | Craig Tiller | 2016-07-01 |
| | |/ / / / | |/| | | | | |||
| | | | | * | Fix runtest.py breakage | Jorge Canizales | 2016-07-01 |
| | |_|_|/ | |/| | | | |||
| | | | * | Fix job_spec invocation for Python run_tests | Masood Malekghassemi | 2016-07-01 |
| | | | | | |||
| | | | * | Remove gcov special-casing for Python tests | Masood Malekghassemi | 2016-07-01 |
| | | | | | | | | | | | | | | | | | | | | We'll need to fix coverage testing in the future anyway (see #6894). | ||
| | | | * | Fall back to default python for test virtualenvs | Masood Malekghassemi | 2016-07-01 |
| | | | | | |||
| | | | * | Sanitize grpcio-tools command arguments | Masood Malekghassemi | 2016-07-01 |
| | | | | | |||
| | | | * | Remove tox | Masood Malekghassemi | 2016-07-01 |
| | | | | | |||
| | | | * | Make running individual Python tests less painful | Masood Malekghassemi | 2016-07-01 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change, running Python tests individually required building a tox environment via the run_tests script and then specifying long environment variables to filter out just the test we wanted to run (and then we wouldn't be able to get the output on interrupt, nor would we have an easy way of determining the PID of the process for debugger attachment). Now invoking the build_python.sh script creates a workable python virtual environment that includes all necessary libraries and tests (s.t. running a single test is now possible by just knowing the module name). This does not change existing supported means of running tests (e.g. through run_tests.py). An additional way of running individual tests has been introduced. Following invocation of `./tools/run_tests/build_python.sh` (or run_tests.py), one may invoke ./$VENV/bin/python -m $TEST_MODULE_NAME and acquire a single running process that *is* the test process (rather than a parent of the process). $VENV is the virtual environment name specified to `build_python.sh` (defaults to `py27`) and $TEST_MODULE_NAME is what it says on the tin. | ||
| | | | * | Organize Python tests to use grpcio-tools directly | Masood Malekghassemi | 2016-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). | ||
| | | | * | Add programmatic access to protoc in grpcio-tools | Masood Malekghassemi | 2016-07-01 |
| | | | | | |||
| | | | * | Build Python3 grpcio-tools on OS X | Masood Malekghassemi | 2016-07-01 |
| | |_|/ | |/| | | |||
| | | * | Change port_server.py to use port 32766 | Ken Payson | 2016-06-30 |
| | |/ | |/| | | | | | | | 32767 is used by filenet-powsrm | ||
| | * | Merge remote-tracking branch 'upstream/master' into handler_http_response | Yuchen Zeng | 2016-06-30 |
| | |\ | | |/ | |/| | |||
| * | | Merge pull request #6992 from y-zeng/auto-build-example | makdharma | 2016-06-30 |
| |\ \ | | | | | | | | | Build objective-c examples as part of automatic tests | ||
| * \ \ | Merge pull request #7109 from soltanmm/toolism | Jan Tattermusch | 2016-06-30 |
| |\ \ \ | | | | | | | | | | | Use open-source defaults to propagate Python plugin configuration | ||
| * \ \ \ | Merge pull request #7093 from murgatroid99/run_interop_override_server_fix | Jan Tattermusch | 2016-06-30 |
| |\ \ \ \ | | | | | | | | | | | | | Fix bug with override_server flag in run_interop_tests.py | ||
| * \ \ \ \ | Merge pull request #7161 from dgquintas/use_release | Jan Tattermusch | 2016-06-30 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | Updated git clone URL | ||
| | * | | | | | Updated git clone URL | David Garcia Quintas | 2016-06-29 |
| | | | | | | | |||
| | | | * | | | Use open-source defaults to propagate Python plugin configuration | Masood Malekghassemi | 2016-06-29 |
| | | | | | | | |||
| * | | | | | | build experimental nugets with dotnet CLI | Jan Tattermusch | 2016-06-29 |
| |/ / / / / | |||
| * | | | | | Merge pull request #7114 from jtattermusch/mac_port_server_timeouts | Nicolas Noble | 2016-06-28 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | Give existing port_server time to respond | ||
| * \ \ \ \ \ | Merge pull request #6885 from yang-g/import | Nicolas Noble | 2016-06-28 |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | add missing language tag | ||
| * \ \ \ \ \ \ | Merge pull request #6920 from murgatroid99/grpc_trace_granularity | Jan Tattermusch | 2016-06-28 |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Allow disabling traces, add trace variables for pluck and timeout events | ||
| | | | * | | | | | give existing port_server time to respond | Jan Tattermusch | 2016-06-28 |
| | | | | |/ / / | | | | |/| | | | |||
| | | * | | | | | Merge remote-tracking branch 'upstream/master' into import | yang-g | 2016-06-28 |
| | | |\| | | | | |||
| * | | | | | | | workaround not necessary in preview2 | Jan Tattermusch | 2016-06-27 |
| | | | | | | | | |||
| * | | | | | | | fix coreclr linux build | Jan Tattermusch | 2016-06-27 |
| | | | | | | | | |||
| * | | | | | | | switch CoreCLR to preview2 | Jan Tattermusch | 2016-06-27 |
| | |_|/ / / / | |/| | | | | | |||
| * | | | | | | Merge pull request #7082 from ctiller/time_errors | Craig Tiller | 2016-06-27 |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | Annotate error.c for timing, remove broken test |