これは、Scrutinizer インスタンスの構成です。
build:
dependencies:
before:
- psql -c 'CREATE DATABASE db_name WITH OWNER scrutinizer;'
- psql -c "ALTER ROLE postgres WITH PASSWORD 'postgres'"
- psql -c 'GRANT ALL PRIVILEGES ON DATABASE "db_name" to postgres'
- cp .env.example .env
project_setup:
override:
- true
environment:
php:
version: 7.0.6
node: 4.0
variables:
APP_KEY: 'app_key'
BUGSNAG_API_KEY: 'test'
tests:
override:
-
command: vendor/bin/phpunit -v --debug --coverage-clover=my-coverage-file --configuration phpunit.xml
coverage:
file: my-coverage-file
format: php-clover
チェック: php: code_rating: true 重複: true
しかし、ユーザーpostgresでpsqlにアクセスできません。何かアイデアはありますか?
Access denied for user 'postgres'@'localhost' (using password: YES)