Skip to content

Commit

Permalink
Trying to fix password expiration
Browse files Browse the repository at this point in the history
  • Loading branch information
morozov committed Nov 19, 2018
1 parent 5a6a96a commit 20bd597
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/continuousphp/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@

declare(strict_types=1);

use Doctrine\DBAL\DriverManager;

(static function () : void {
DriverManager::getConnection([
'driver' => 'oci8',
'host' => 'oracle-xe-11',
'user' => 'ORACLE',
'password' => 'ORACLE',
'dbname' => 'XE',
])->query('ALTER USER ORACLE IDENTIFIED BY ORACLE');

$pos = array_search('--coverage-clover', $_SERVER['argv'], true);

if ($pos === false) {
Expand Down

0 comments on commit 20bd597

Please sign in to comment.