aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_performance_tests.py
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-14 17:49:25 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-14 17:49:25 +0200
commit4bfff0a0ffe865623b6878e89771256272ef8dd0 (patch)
treeee6375567a7be610b872de0c274e105dcc4adfe2 /tools/run_tests/run_performance_tests.py
parent217d460ee261fddb2a94b1bd8a8c5e6947bbc07b (diff)
yapf code
Diffstat (limited to 'tools/run_tests/run_performance_tests.py')
-rwxr-xr-xtools/run_tests/run_performance_tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run_tests/run_performance_tests.py b/tools/run_tests/run_performance_tests.py
index bde2cff8f9..5bf30e0050 100755
--- a/tools/run_tests/run_performance_tests.py
+++ b/tools/run_tests/run_performance_tests.py
@@ -193,7 +193,9 @@ def archive_repo(languages):
# so we just skip them as a workaround.
# See https://github.com/grpc/grpc/issues/16334
bad_symlinks_dir = '../grpc/third_party/libcxx/test/std/experimental/filesystem/Inputs/static_test_env'
- cmdline = ['tar', '--exclude', bad_symlinks_dir, '-cf','../grpc.tar', '../grpc/']
+ cmdline = [
+ 'tar', '--exclude', bad_symlinks_dir, '-cf', '../grpc.tar', '../grpc/'
+ ]
if 'java' in languages:
cmdline.append('../grpc-java')
if 'go' in languages: