We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b7ce0f commit 4e07bf7Copy full SHA for 4e07bf7
3 files changed
.travis.yml
@@ -1,8 +1,5 @@
1
language: php
2
3
-services:
4
- - mysql
5
-
6
php:
7
- 5.5
8
- 5.6
@@ -19,7 +16,8 @@ install:
19
16
- wget https://scrutinizer-ci.com/ocular.phar
20
17
21
18
before_script:
22
- - mysql -e 'create database task_test;'
+ - STORAGE=doctrine tests/app/console doctrine:database:create
+ - STORAGE=doctrine tests/app/console doctrine:schema:create
23
24
script:
25
- phpunit -c phpunit.xml.dist --coverage-clover=coverage.clover
tests/app/config/config.doctrine.yml
@@ -6,10 +6,11 @@ doctrine:
auto_generate_proxy_classes: %kernel.debug%
auto_mapping: true
dbal:
9
- driver: pdo_mysql
+ driver: pdo_sqlite
10
host: localhost
11
port: ~
12
dbname: task_test
13
user: root
14
password: ~
15
charset: UTF8
+ path: '%kernel.root_dir%/data/database.sqlite'
tests/app/data/.empty
0 commit comments