Commit 8a8f24405ea1b90b2b06fb10344ebbcee78119b4

Authored by Eder Soares
1 parent 0912b600
Exists in 2.8 and in 7 other branches 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7

Scrutinizer

Showing 1 changed file with 4 additions and 3 deletions   Show diff stats
.scrutinizer.yml
... ... @@ -27,18 +27,19 @@ tools:
27 27  
28 28 build:
29 29 environment:
30   - postgresql: true
31 30 variables:
32 31 APP_ENV: 'testing'
33 32 DB_CONNECTION: 'pgsql'
34 33 DB_HOST: 'localhost'
35 34 DB_PORT: '5432'
36   - DB_DATABASE: 'ieducar_test'
  35 + DB_DATABASE: 'scrutinizer'
37 36 DB_USERNAME: 'scrutinizer'
38 37 DB_PASSWORD: 'scrutinizer'
39 38 dependencies:
40 39 before:
41   - - psql -c "CREATE DATABASE ieducar_test WITH OWNER = scrutinizer ENCODING = 'UTF8' LC_COLLATE = 'en_US.UTF-8' TEMPLATE template0"
  40 + - composer new-install
42 41 tests:
43 42 override:
44 43 command: "true"
  44 + services:
  45 + postgres: 9.5
... ...