Skip to content

Commit

Permalink
Fixed a bug in the building up of the list of tpset_files produced in…
Browse files Browse the repository at this point in the history
… an integrationtest.
  • Loading branch information
Kurt Biery committed Dec 31, 2024
1 parent 41db253 commit 54509bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/integrationtest/integrationtest_drunc.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,9 @@ class RunResult:
result.data_files += list(
rawdata_dir.glob(f"{create_config_files.config.op_env}_raw_*.hdf5")
)
result.tpset_files = []
for tpset_dir in tpset_dirs:
result.tpset_files = list(
result.tpset_files += list(
tpset_dir.glob(f"{create_config_files.config.op_env}_tp_*.hdf5")
)
result.log_files = list(run_dir.glob("log_*.txt")) + list(run_dir.glob("log_*.log"))
Expand Down

0 comments on commit 54509bc

Please sign in to comment.