Skip to content
Snippets Groups Projects
Commit 42755f31 authored by Felix Kleinert's avatar Felix Kleinert
Browse files

fix: skip PlotStationMap on hdfmll and hdfmlc

parent 31c842c5
No related branches found
No related tags found
3 merge requests!125Release v0.10.0,!124Update Master to new version v0.10.0,!97Felix issue106 hpc modules for juwels
Pipeline #35582 passed
......@@ -200,7 +200,7 @@ class PostProcessing(RunEnvironment):
PlotConditionalQuantiles(self.test_data.stations, data_pred_path=path, plot_folder=self.plot_path)
if "PlotStationMap" in plot_list:
if self.data_store.get("hostname")[:2] in self.data_store.get("hpc_hosts") or self.data_store.get(
"hostname")[:5] in self.data_store.get("hpc_hosts"):
"hostname")[:6] in self.data_store.get("hpc_hosts"):
logging.warning(
f"Skip 'PlotStationMap` because running on a hpc node: {self.data_store.get('hostname')}")
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment