Xqt has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1181302?usp=email )
Change subject: Tests: Fix GITHUB_ACTIONS check ...................................................................... Tests: Fix GITHUB_ACTIONS check Change-Id: If483e6116772b384c94bb82c23ad2392c2c80673 Signed-off-by: Xqt <[email protected]> --- M tests/utils.py 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Xqt: Verified; Looks good to me, approved diff --git a/tests/utils.py b/tests/utils.py index 3f57ba1..44d8227 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -526,7 +526,7 @@ """ tmp_path: Path | None = None command = [sys.executable] - use_coverage = os.environ.get('GITHUB_ACTIONS') == '1' + use_coverage = os.environ.get('GITHUB_ACTIONS') if use_coverage: # Test running and coverage is installed, -- To view, visit https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1181302?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.wikimedia.org/r/settings?usp=email Gerrit-MessageType: merged Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Change-Id: If483e6116772b384c94bb82c23ad2392c2c80673 Gerrit-Change-Number: 1181302 Gerrit-PatchSet: 2 Gerrit-Owner: Xqt <[email protected]> Gerrit-Reviewer: Xqt <[email protected]> Gerrit-CC: jenkins-bot
_______________________________________________ Pywikibot-commits mailing list -- [email protected] To unsubscribe send an email to [email protected]
