Skip to content

Commit

Permalink
test_bit_reproducibility.py: Renamed output checksum file from `CHECK…
Browse files Browse the repository at this point in the history
…SUM` to `historical-3hr-checksum.yaml`
  • Loading branch information
CodeGat committed Feb 15, 2024
1 parent 78cdcc3 commit ef9b19e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_bit_reproducibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ def test_bit_repro_historical(self, output_path: Path, control_path: Path,
"""
# Setup checksum output directory
# NOTE: The checksum output file is used as part of `repro-ci` workflow
output_dir = output_path / 'checksum'
output_dir = output_path / 'checksum'
output_dir.mkdir(parents=True, exist_ok=True)
checksum_output_file = output_dir / 'CHECKSUM'
checksum_output_file = output_dir / 'historical-3hr-checksum.yaml'
if checksum_output_file.exists():
checksum_output_file.unlink()
# Setup and run experiment

# Setup and run experiment
exp = setup_exp(control_path, output_path, "test_bit_repro_historical")
exp.model.set_model_runtime()
exp.setup_and_run()
Expand Down

0 comments on commit ef9b19e

Please sign in to comment.