Name Date Size #Lines LOC

..--

artifacts/H25-Apr-2025-1,9041,326

build_stats/H25-Apr-2025-107105

dockerize/H25-Apr-2025-418232

generated/H25-Apr-2025-13,48313,477

helper_scripts/H25-Apr-2025-1,014475

interop/H25-Apr-2025-244196

lb_interop_tests/H25-Apr-2025-375313

performance/H25-Apr-2025-7,9876,589

python_utils/H25-Apr-2025-2,9542,350

sanity/H25-Apr-2025-1,6321,028

xds_k8s_test_driver/H25-Apr-2025-42

README.mdH A D25-Apr-20252.2 KiB4728

run_grpclb_interop_tests.pyH A D25-Apr-202522.6 KiB699578

run_interop_tests.pyH A D25-Apr-202557.7 KiB1,8681,528

run_microbenchmark.pyH A D25-Apr-20254.1 KiB169125

run_performance_tests.pyH A D25-Apr-202528.2 KiB844716

run_tests.pyH A D25-Apr-202563.6 KiB1,9221,604

run_tests_matrix.pyH A D25-Apr-202520.3 KiB659553

run_xds_tests.pyH A D25-Apr-2025155.4 KiB4,3343,855

start_port_server.pyH A D25-Apr-20251,000 3010

task_runner.pyH A D25-Apr-20254.4 KiB151114

README.md

1# Overview
2
3This directory contains scripts that facilitate building and running tests. We are using python scripts as entrypoint for our
4tests because that gives us the opportunity to run tests using the same commandline regardless of the platform you are using.
5
6# Unit tests (run_tests.py)
7
8Builds gRPC in given language and runs unit tests. Use `tools/run_tests/run_tests.py --help` for more help.
9
10###### Example
11`tools/run_tests/run_tests.py -l python -c dbg`
12
13###### Useful options (among many others)
14- `--use_docker` Builds a docker container containing all the prerequisites for given language and runs the tests under that container.
15- `--build_only` Only build, do not run the tests.
16
17Note: If you get an error such as `ImportError: No module named httplib2`, then you may be missing some Python modules. Install the module listed in the error and try again.
18
19Note: some tests may be flaky. Check the "Issues" tab for known flakes and other issues.
20
21The full suite of unit tests will take many minutes to run.
22
23# Interop tests (run_interop_tests.py)
24
25Runs tests for cross-platform/cross-language interoperability. For more details, see [Interop tests descriptions](/doc/interop-test-descriptions.md)
26The script is also capable of running interop tests for grpc-java and grpc-go, using sources checked out alongside the ones of the grpc repository.
27
28###### Example
29`tools/run_tests/run_interop_tests.py -l python -s c++ --use_docker` (run interop tests with C# client and C++ server)
30
31Note: if you see an error like `no space left on device` when running the
32interop tests using Docker, make sure that Docker is building the image files in
33a location with sufficient disk space.
34
35# Performance benchmarks (run_performance_tests.py)
36
37The `run_performance_tests.py` script is deprecated.
38See [end-to-end benchmarking documentation](/tools/run_tests/peformance/README.md) for more info.
39
40# Artifacts & Packages (task_runner.py)
41
42A generalized framework for running predefined tasks based on their labels. We use this to building binary artifacts & distrib packages and testing them)
43
44###### Example
45`tools/run_tests/task_runner.py -f python artifact linux x64` (build tasks with labels `python`, `artifact`, `linux`, and `x64`)
46
47