From 8a8ac0683b6ee7f381aa298169841190af688c3e Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Mon, 6 Feb 2023 07:34:20 +0000 Subject: [PATCH] Always run the full test suite if the GitHub event is not `pull_request` Signed-off-by: Pedro Algarvio --- tools/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci.py b/tools/ci.py index 96bbe0b2d3c..7d27e37b5c0 100644 --- a/tools/ci.py +++ b/tools/ci.py @@ -360,7 +360,7 @@ def define_testrun(ctx: Context, event_name: str, changed_files: pathlib.Path): if TYPE_CHECKING: assert github_step_summary is not None - if event_name in ("push", "schedule"): + if event_name != "pull_request": # In this case, a full test run is in order ctx.info("Writing 'testrun' to the github outputs file") testrun = {"type": "full"}