Skip to content
Snippets Groups Projects

Show unit test reports in Gitlab

Merged Daniel Lyons requested to merge show-unit-test-reports-in-gitlab into 2.8.4-DEVELOPMENT
Compare and
7 files
+ 44
9
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -214,9 +214,7 @@ class NgasFile(LocatedFile):
@property
def is_image_ancillary(self) -> bool:
# removing weblog from image ancillaries until processing date determination is sorted
# return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
return self.relative_path.endswith(".fits")
return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
def __str__(self):
return f"NGAS {self.ngas_file_id} from {self.server} -> {self.subdirectory}/{self.relative_path}"
@@ -286,9 +284,7 @@ class OracleXml(LocatedFile):
@property
def is_image_ancillary(self) -> bool:
# removing weblog from image ancillaries until processing date determination is sorted
# return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
return self.relative_path.endswith(".fits")
return self.relative_path.endswith(".fits") or self.relative_path.endswith("weblog.tgz")
def __str__(self):
return f"ALMA {self.archive_uid} @ {self.table} -> {self.subdirectory}/{self.relative_path}"
Loading