Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Always run tests #19

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 0 additions & 10 deletions files/bin/deploy-iqe-cji.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,16 +210,6 @@ def run(self) -> None:
display("PR labeled to skip smoke tests")
return

# Skip Konflux tests unless explicitly labeled.
# This prevents tests from running in both Jenkins and Konflux and can be
# removed when Konflux increases the integration test timeout and
# Jenkins tests are disabled.
#
# https://issues.redhat.com/browse/KONFLUX-5449
if "run-konflux-tests" not in self.pr_labels:
display("PR is not labeled to run tests in Konflux")
return

if "smokes-required" in self.pr_labels and not any(label.endswith("smoke-tests") for label in self.pr_labels):
sys.exit("Missing smoke tests labels.")

Expand Down
10 changes: 0 additions & 10 deletions files/bin/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,16 +188,6 @@ def main() -> None:
if "smokes-required" in labels and not any(label.endswith("smoke-tests") for label in labels):
sys.exit("Missing smoke tests labels.")

# Skip Konflux tests unless explicitly labeled.
# This prevents tests from running in both Jenkins and Konflux and can be
# removed when Konflux increases the integration test timeout and
# Jenkins tests are disabled.
#
# https://issues.redhat.com/browse/KONFLUX-5449
if "run-konflux-tests" not in labels:
display("PR is not labeled to run tests in Konflux")
return

# Credentials
aws_credentials_eph = os.environ.get("AWS_CREDENTIALS_EPH")
gcp_credentials_eph = os.environ.get("GCP_CREDENTIALS_EPH")
Expand Down