From d47140abb10f4398050fb2fa5c5848fb1fe8b32c Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Mon, 18 Jul 2022 10:22:43 +1200 Subject: [PATCH] MNT Disable codecov always running on silverstripe account --- job_creator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/job_creator.php b/job_creator.php index dcd2bb8..840126f 100644 --- a/job_creator.php +++ b/job_creator.php @@ -284,8 +284,8 @@ private function createPhpunitJobs( private function doRunPhpCoverage(array $run): bool { - // always run on silverstripe account, unless phpcoverage_force_off is set to true - if (preg_match('#^silverstripe/#', $this->githubRepository)) { + // (currently disabled) always run on silverstripe account, unless phpcoverage_force_off is set to true + if (false && preg_match('#^silverstripe/#', $this->githubRepository)) { return !$run['phpcoverage_force_off']; } return $run['phpcoverage'];