Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit 9873084

Browse files
committed
move reads & writes into their folders
1 parent b5d26c5 commit 9873084

5 files changed

Lines changed: 2 additions & 3 deletions

File tree

tests/perf/microbenchmarks/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def _get_params() -> Dict[str, List[ReadParameters]]:
3737
you may use itertools.product
3838
"""
3939
params: Dict[str, List[ReadParameters]] = {}
40-
config_path = os.path.join(os.path.dirname(__file__), "config.yaml")
40+
config_path = os.path.join(os.path.dirname(__file__), "reads/config.yaml")
4141
with open(config_path, "r") as f:
4242
config = yaml.safe_load(f)
4343

@@ -115,7 +115,7 @@ def get_write_params() -> Dict[str, List[WriteParameters]]:
115115
you may use itertools.product
116116
"""
117117
params: Dict[str, List[WriteParameters]] = {}
118-
config_path = os.path.join(os.path.dirname(__file__), "config_writes.yaml")
118+
config_path = os.path.join(os.path.dirname(__file__), "writes/config.yaml")
119119
with open(config_path, "r") as f:
120120
config = yaml.safe_load(f)
121121

File renamed without changes.

tests/perf/microbenchmarks/test_reads.py renamed to tests/perf/microbenchmarks/reads/test_reads.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ async def download_chunks_using_mrd_async(client, filename, other_params, chunks
6969
# end timer.
7070
end_time = time.monotonic_ns()
7171
elapsed_time = end_time - start_time
72-
print(f"INFO: Time taken to download all chunks: {elapsed_time} ns")
7372
return elapsed_time / 1_000_000_000
7473

7574

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)