Skip to content

Commit

Permalink
fixtest
Browse files Browse the repository at this point in the history
  • Loading branch information
neverchanje committed Jan 10, 2024
1 parent 89bbd28 commit 7fbcfa4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions integration_tests/client-library/client_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,23 @@ def check_java():

failed_cases = []

# try:
# check_go()
# except Exception as e:
# print(e)
# failed_cases.append("go client failed")
try:
check_go()
except Exception as e:
print(e)
failed_cases.append("go client failed")

try:
check_python()
except Exception as e:
print(e)
failed_cases.append("python client failed")

# try:
# check_java()
# except Exception as e:
# print(e)
# failed_cases.append("java client failed")
try:
check_java()
except Exception as e:
print(e)
failed_cases.append("java client failed")

if len(failed_cases) != 0:
print(f"--- client check failed for case\n{failed_cases}")
Expand Down

0 comments on commit 7fbcfa4

Please sign in to comment.