Skip to content

Commit

Permalink
Printout
Browse files Browse the repository at this point in the history
  • Loading branch information
raunakab committed Dec 15, 2024
1 parent 3c24803 commit b5f5cb1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions benchmarking/tpcds/ray_entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,14 @@ def run(
)
args = parser.parse_args()

tpcds_gen_folder: Path = args.tpcds_gen_folder
print(f"{tpcds_gen_folder=}")
this_dir = Path(".")
for x in this_dir.iterdir():
d = Path("benchmarking")
assert d.exists()

for x in d.iterdir():
print(f"subpath: {x}")

tpcds_gen_folder: Path = args.tpcds_gen_folder
print(f"{tpcds_gen_folder=}")
assert tpcds_gen_folder.exists()
assert args.question in range(1, 100)

Expand Down

0 comments on commit b5f5cb1

Please sign in to comment.