From d593fda8d5c67093da8f8f7d5dec633cef83462a Mon Sep 17 00:00:00 2001 From: "Mikhail f. Shiryaev" Date: Thu, 17 Mar 2022 16:50:20 +0100 Subject: [PATCH] Fix logic for --no-prestable --- tests/ci/release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ci/release.py b/tests/ci/release.py index 89182dc7428..ca1a66dbbac 100755 --- a/tests/ci/release.py +++ b/tests/ci/release.py @@ -100,10 +100,10 @@ class Release: if self.release_type in self.BIG: # Checkout to the commit, it will provide the correct current version if with_prestable: - logging.info("Skipping prestable stage") - else: with self.prestable(): logging.info("Prestable part of the releasing is done") + else: + logging.info("Skipping prestable stage") with self.testing(): logging.info("Testing part of the releasing is done")