Skip to content

Commit

Permalink
skip check
Browse files Browse the repository at this point in the history
  • Loading branch information
littleEast7 committed Dec 6, 2024
1 parent 1f85a23 commit 5bea21f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def verify_result(num):


@pytest.mark.skip(reason="no-mock test")
def main():
def other_option_test_disabled():

# # init
if alluxio_fs.exists(home_path):
Expand Down Expand Up @@ -140,4 +140,4 @@ def main():

# if __name__ == '__main__':
for i in range(1):
main()
other_option_test_disabled()
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@


@pytest.mark.skip(reason="no-mock test")
def read_test(file_name="test.csv"):
def read_test_disabled(file_name="test.csv"):
file_path_ufs = home_path + "/" + file_name
file_path_local = "../assets/" + file_name

Expand Down Expand Up @@ -67,5 +67,5 @@ def read_test(file_name="test.csv"):

# for file_name in file_names:
# print(file_name)
# read_test(file_name)
read_test()
# read_test_disabled(file_name)
read_test_disabled()
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@


@pytest.mark.skip(reason="no-mock test")
def write_test(file_name="test.csv"):
def write_test_disabled(file_name="test.csv"):
file_path_ufs = home_path + "/" + file_name
file_path_local = "../assets/" + file_name

Expand Down Expand Up @@ -62,5 +62,5 @@ def write_test(file_name="test.csv"):

# for file_name in file_names:
# print(file_name)
# write_test(file_name)
write_test()
# write_test_disabled(file_name)
write_test_disabled()

0 comments on commit 5bea21f

Please sign in to comment.