From edac748da1cf4af782fc2b2ad27ca9f459df62cd Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Tue, 26 Jul 2022 13:25:05 +1200 Subject: [PATCH] ENH Re-disable codecov 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 1c88af8..4db7ac6 100644 --- a/job_creator.php +++ b/job_creator.php @@ -287,8 +287,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'];