Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
registry_username: ${{ secrets.QUAY_IMAGE_SCLORG_BUILDER_USERNAME }}
registry_token: ${{ secrets.QUAY_IMAGE_SCLORG_BUILDER_TOKEN }}
dockerfile: Dockerfile.daily-tests
tag: "0.6.0"
tag: "0.6.1"
image_name: "upstream-daily-tests"
quay_application_token: ${{ secrets.QUAY_IMAGE_SCLORG_UPDATE_DESC }}
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile.daily-tests
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM quay.io/fedora/fedora:42

ENV SHARED_DIR="/var/ci-scripts" \
VERSION="42" \
RELEASE_UPSTREAM="0.6.0" \
RELEASE_UPSTREAM="0.6.1" \
UPSTREAM_TMT_REPO="https://github.com/sclorg/sclorg-testing-farm" \
UPSTREAM_TMT_DIR="sclorg-testing-farm" \
HOME="/home/nightly" \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.0 -f Dockerfile.daily-tests .
podman build -t quay.io/sclorg/upstream-daily-tests:0.6.1 -f Dockerfile.daily-tests .
9 changes: 5 additions & 4 deletions show_logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ def __init__(self):
self.cwd = os.getcwd()

def iter_results_in_directory(self):
"""Yield all files in the given directory."""
success_tests = []
failed_tests = []
for item in DAILY_REPORTS_DIR.iterdir():
Expand All @@ -23,8 +22,10 @@ def iter_results_in_directory(self):
success_tests.append(item.name)
else:
failed_tests.append(item.name)
print(f"Success tests in {DAILY_REPORTS_DIR} are: {success_tests}")
print(f"Failed tests in {DAILY_REPORTS_DIR} are: {failed_tests}")
print(f"Success tests in {DAILY_REPORTS_DIR} are:")
print("\n".join(success_tests))
print(f"Failed tests in {DAILY_REPORTS_DIR} are:")
print("\n".join(failed_tests))

def iter_over_executed_tests(self):
"""Yield all executed tests in the given directory."""
Expand All @@ -34,7 +35,7 @@ def iter_over_executed_tests(self):
if item.is_file():
executed_tests.append(item.name)
print("Executed tests are:")
print(executed_tests.split("\n"))
print("\n".join(executed_tests))

def print_report(self):
print("Daily SCL Tests Reports:")
Expand Down