Skip to content

Commit

Permalink
Merge pull request #172 from DUNE-DAQ/kbiery/integtest_nonstandard_ou…
Browse files Browse the repository at this point in the history
…tdir

Added back the ability to specify a non-standard output directory for…
  • Loading branch information
bieryAtFnal authored Jan 7, 2025
2 parents 36ac211 + 67b881d commit 7572812
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions integtest/long_window_readout_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,13 @@
updates={"max_file_size": 4 * 1024 * 1024 * 1024},
)
)
conf_dict.config_substitutions.append(
data_classes.config_substitution(
obj_class="DataStoreConf",
obj_id="default",
updates={"directory_path": output_path_parameter},
)
)

trsplit_conf = copy.deepcopy(conf_dict)
trsplit_conf.config_substitutions.append(
Expand Down
14 changes: 14 additions & 0 deletions integtest/tpstream_writing_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,20 @@
updates={"merge_overlapping_tcs": 0},
)
)
conf_dict.config_substitutions.append(
data_classes.config_substitution(
obj_class="DataStoreConf",
obj_id="default",
updates={"directory_path": output_dir},
)
)
conf_dict.config_substitutions.append(
data_classes.config_substitution(
obj_class="DataStoreConf",
obj_id="default_tp_store_conf",
updates={"directory_path": output_dir},
)
)

confgen_arguments = {"Software_TPG_System": conf_dict}

Expand Down

0 comments on commit 7572812

Please sign in to comment.