We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74871e6 commit b02402aCopy full SHA for b02402a
appengine/flexible/cloudsql/tests/LocalTest.php
@@ -32,6 +32,11 @@ public function createApplication()
32
$app['mysql.dsn'] = getenv('MYSQL_DSN');
33
$app['mysql.user'] = getenv('MYSQL_USER');
34
$app['mysql.password'] = getenv('MYSQL_PASSWORD');
35
+ if ($app['mysql.dsn'] === false ||
36
+ $app['mysql.user'] === false ||
37
+ $app['mysql.password'] === false) {
38
+ $this->markTestSkipped('set the MYSQL_DSN, MYSQL_USER and MYSQL_PASSWORD environment variables');
39
+ }
40
return $app;
41
}
42
0 commit comments