Skip to content

Commit

Permalink
Merge branch 'main' into olex/more-tim-benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
olejandro authored Jan 17, 2025
2 parents bc65498 + acc0ed9 commit e9cf962
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ benchmarks:
- "SuppXLS/Scen_B_TRA_Emissions.xlsx"
- "SuppXLS/Scen_B_TRA_EV_Parity.xlsx"
- "SuppXLS/Scen_B_TRA_F_ModalShares.xlsx"
dd_folder: TIM
dd_folder: TIM/model
dd_files:
- "base"
- "pwr_dh"
Expand Down Expand Up @@ -483,7 +483,7 @@ benchmarks:
- "milestonyr"
include_dummy_imports: true
- name: TIMES-IE-MCB
input_folder: TIM
input_folder: TIM/model
regions: "IE"
inputs:
- "VT_IE_AGR.xlsx"
Expand Down Expand Up @@ -545,7 +545,7 @@ benchmarks:
- "SuppXLS/Scen_B_TRA_Emissions.xlsx"
- "SuppXLS/Scen_B_TRA_EV_Parity.xlsx"
- "SuppXLS/Scen_B_TRA_F_ModalShares.xlsx"
dd_folder: TIM
dd_folder: TIM/model
dd_files:
- "base-bulk"
- "ind_ccs"
Expand Down
2 changes: 1 addition & 1 deletion xl2times/dd_to_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def main(arg_list: None | list[str] = None):
help="List of .dd file stems to process.",
)
args = args_parser.parse_args(arg_list)
dd_files = [p for p in Path(args.input_dir).rglob("*.dd")]
dd_files = [p for p in Path(args.input_dir).glob("*.dd")]
if args.include_files:
valid_stems = {stem.lower() for stem in args.include_files}
dd_files = [p for p in dd_files if p.stem.lower() in valid_stems]
Expand Down

0 comments on commit e9cf962

Please sign in to comment.