diff --git a/src/Plugins/Only.php b/src/Plugins/Only.php index 95bc3ca3..3fe161af 100644 --- a/src/Plugins/Only.php +++ b/src/Plugins/Only.php @@ -40,6 +40,10 @@ public function terminate(): void */ public static function enable(TestCall $testCall): void { + if (Environment::name() == Environment::CI) { + return; + } + $testCall->group('__pest_only'); $lockFile = self::TEMPORARY_FOLDER.DIRECTORY_SEPARATOR.'only.lock';