From 7cf39d89923e04796ccb4eba4a216d5f66b6e785 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Mon, 6 Mar 2023 13:02:06 +0000 Subject: [PATCH] Fix dictionary key typo 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 c656f8cfa0c..5bf725f83f6 100644 --- a/tools/ci.py +++ b/tools/ci.py @@ -341,7 +341,7 @@ def define_jobs( wfh.write("De-selecting the 'test-pkg' job.\n") jobs["test-pkg"] = False - if not jobs["test"] and not jobs["pkg-test"]: + if not jobs["test"] and not jobs["test-pkg"]: with open(github_step_summary, "a", encoding="utf-8") as wfh: for job in ( "build-source-tarball",