Skip to content

Commit

Permalink
Update .travis.yml for 3.x datasources.
Browse files Browse the repository at this point in the history
We need the full classname for now.
  • Loading branch information
markstory committed Mar 29, 2013
1 parent 40389af commit 213b111
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -40,7 +40,7 @@ before_script:
}
\$identities = array(
'mysql' => array(
'datasource' => 'Database/Mysql',
'datasource' => 'Cake\Model\Datasource\Database\Driver\Mysql',
'host' => '0.0.0.0',
'login' => 'travis',
'database' => array(
Expand All @@ -51,7 +51,7 @@ before_script:
),
),
'pgsql' => array(
'datasource' => 'Database/Postgres',
'datasource' => 'Cake\Model\Datasource\Database\Driver\\Postgres',
'host' => '127.0.0.1',
'login' => 'postgres',
'database' => 'cakephp_test',
Expand All @@ -63,7 +63,7 @@ before_script:
)
),
'sqlite' => array(
'datasource' => 'Database/Sqlite',
'datasource' => 'Cake\Model\Datasource\Database\Driver\Sqlite',
'database' => array(
'default' => ':memory:',
'test' => ':memory:',
Expand Down

0 comments on commit 213b111

Please sign in to comment.