File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 7
7
/.travis.yml export-ignore
8
8
/build
9
9
/composer.lock
10
+ /database.yml export-ignore
10
11
/phpunit.xml export-ignore
11
12
/tests export-ignore
12
13
/vendor
Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
+ services :
4
+ - postgresql
5
+
3
6
matrix :
4
7
include :
5
8
- php : 7.1.3
@@ -26,6 +29,7 @@ before_script:
26
29
- travis_retry composer self-update
27
30
- travis_retry composer install --no-interaction --prefer-source
28
31
- chmod +x tests/*.sh
32
+ - psql -c 'create database testing;' -U postgres
29
33
30
34
script :
31
35
- ./tests/pu-${PU_FILE}.sh
Original file line number Diff line number Diff line change
1
+ test :
2
+ adapter : postgresql
3
+ database : testing
4
+ username : homestead
5
+ password : secret
6
+ encoding : utf8
You can’t perform that action at this time.
0 commit comments