diff --git a/Dockerfile.daily-tests b/Dockerfile.daily-tests index 70a658e..ae4606b 100644 --- a/Dockerfile.daily-tests +++ b/Dockerfile.daily-tests @@ -2,7 +2,7 @@ FROM quay.io/fedora/fedora:42 ENV SHARED_DIR="/var/ci-scripts" \ VERSION="42" \ - RELEASE_UPSTREAM="0.6.4" \ + RELEASE_UPSTREAM="0.6.5" \ UPSTREAM_TMT_REPO="https://github.com/sclorg/sclorg-testing-farm" \ UPSTREAM_TMT_DIR="sclorg-testing-farm" \ HOME="/home/nightly" \ diff --git a/Makefile b/Makefile index 723b6dc..f089e03 100644 --- a/Makefile +++ b/Makefile @@ -7,4 +7,4 @@ shellcheck: ./run-shellcheck.sh `git ls-files *.sh` build_images: - podman build -t quay.io/sclorg/upstream-daily-tests:0.6.4 -f Dockerfile.daily-tests . + podman build -t quay.io/sclorg/upstream-daily-tests:0.6.5 -f Dockerfile.daily-tests . diff --git a/show_logs.py b/show_logs.py index eb3dad0..8ae5eda 100755 --- a/show_logs.py +++ b/show_logs.py @@ -84,20 +84,20 @@ def show_all_available_tests(self): print(item.name) def print_report(self): + print(f"Summary ({self.date}) of Daily SCL Tests Reports:") if not self.scl_tests_dir.is_dir(): print( f"The directory {self.scl_tests_dir} does not exist. Tests were not executed yet." ) - return - print(f"Summary ({self.date}) of Daily SCL Tests Reports:") + else: + self.iter_over_executed_tests() if not self.reports_dir.is_dir(): print( f"The directory {self.reports_dir} does not exist. Tests were not finished yet." ) - return - self.iter_over_executed_tests() - print(f"Summary of results reports directory {self.reports_dir}:") - self.iter_results_in_directory() + else: + print(f"Summary of results reports directory {self.reports_dir}:") + self.iter_results_in_directory() if __name__ == "__main__":