From 1423508341da625b0274e957ab0a22a861355a57 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 26 Sep 2025 13:24:53 +0000 Subject: [PATCH] ci: only run coveralls on one of the unittest tasks coveralls has been quite flaky recently -- let's try to lower the number of CI tasks where it spreads the flakiness. --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index c1a3529ff..8fbb19a55 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -55,7 +55,7 @@ task: -m pytest tests -v - coverage report coveralls_script: - - if [ ! -z "$COVERALLS_REPO_TOKEN" ] ; then coveralls ; fi + - if [ ! -z "$COVERALLS_REPO_TOKEN" ] && [ "$ELECTRUM_PYTHON_VERSION" = "3.10" ] ; then coveralls ; fi env: LD_LIBRARY_PATH: contrib/_saved_secp256k1_build/ ELECTRUM_REQUIREMENTS_CI: contrib/requirements/requirements-ci.txt