in src/TestUtils/DeploymentTrait.php [64:81]
private static function doDeployApp()
{
if (getenv('RUN_DEPLOYMENT_TESTS') !== 'true') {
self::markTestSkipped(
'To run this test, set RUN_DEPLOYMENT_TESTS env to true.'
);
}
if (getenv('GOOGLE_SKIP_DEPLOYMENT') !== 'true') {
static::beforeDeploy();
if (static::doDeploy() === false) {
self::fail('Deployment failed.');
}
if ((int) $delay = getenv('GOOGLE_DEPLOYMENT_DELAY')) {
sleep($delay);
}
static::afterDeploy();
}
}