Remove old GRPC bash script and convert to python3 (#7454)

* Remove old GRPC bash script and convert to python3

* updated checking gRPC script to python3
This commit is contained in:
Derek Bailey
2022-08-16 23:44:50 -07:00
committed by GitHub
parent b057aa917f
commit 7aae0af305
8 changed files with 175 additions and 104 deletions

View File

@@ -20,6 +20,7 @@ import glob
import platform
import shutil
import subprocess
import generate_grpc_examples
from pathlib import Path
parser = argparse.ArgumentParser()
@@ -514,3 +515,6 @@ def flatc_annotate(schema, include=None, data=None, cwd=tests_path):
flatc_annotate(
schema="monster_test.fbs", include="include_test", data="monsterdata_test.mon"
)
# Run the generate_grpc_examples script
generate_grpc_examples.GenerateGRPCExamples()