Skip to content

Commit

Permalink
remove changes in test file
Browse files Browse the repository at this point in the history
  • Loading branch information
kche0169 committed Jan 9, 2025
1 parent 020c773 commit 1579efc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tools/run_pysdk_remote_infinity_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
python_executable = sys.executable


def python_sdk_test(python_test_dir: str, pytest_mark: str, single_file_name=""):
# The single file name must be start with '/'
def python_sdk_test(python_test_dir: str, pytest_mark: str):
print("python test path is {}".format(python_test_dir))
# run test
print(f"start pysdk test with {pytest_mark}")
Expand All @@ -23,7 +22,7 @@ def python_sdk_test(python_test_dir: str, pytest_mark: str, single_file_name="")
"-x",
"-m",
pytest_mark,
f"{python_test_dir}/test_pysdk" + single_file_name,
f"{python_test_dir}/test_pysdk",
]
quoted_args = ['"' + arg + '"' if " " in arg else arg for arg in args]
print(" ".join(quoted_args))
Expand Down

0 comments on commit 1579efc

Please sign in to comment.