File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
- services :
4
- - mysql
5
-
6
3
php :
7
4
- 5.5
8
5
- 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;'
19
+ - STORAGE=doctrine tests/app/console doctrine:database:create
20
+ - STORAGE=doctrine tests/app/console doctrine:schema:create
23
21
24
22
script :
25
23
- phpunit -c phpunit.xml.dist --coverage-clover=coverage.clover
Original file line number Diff line number Diff line change @@ -6,10 +6,11 @@ doctrine:
6
6
auto_generate_proxy_classes : %kernel.debug%
7
7
auto_mapping : true
8
8
dbal :
9
- driver : pdo_mysql
9
+ driver : pdo_sqlite
10
10
host : localhost
11
11
port : ~
12
12
dbname : task_test
13
13
user : root
14
14
password : ~
15
15
charset : UTF8
16
+ path : ' %kernel.root_dir%/data/database.sqlite'
You can’t perform that action at this time.
0 commit comments