We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83a99d4 commit 3cd0ef7Copy full SHA for 3cd0ef7
1 file changed
suite_report_git/suite_data.py
@@ -127,6 +127,12 @@ def determine_primary_source(self) -> str:
127
if len(self.dependencies) == 1:
128
return list(self.dependencies.keys())[0]
129
130
+ # If 2 dependencies, remove simsys_scripts
131
+ if len(self.dependencies) == 2:
132
+ for item in self.dependencies:
133
+ if item.lower() != "simsys_scripts":
134
+ return item
135
+
136
# If LFRic Apps in sources, that is the primary source
137
if "lfric_apps" in self.dependencies.keys():
138
return "lfric_apps"
0 commit comments