Test Setup Failed
Push — master ( 5e2d1c...4fe2ba )
by Steven
01:31
created

Checkout Config

checks:
    ruby:
        code_rating: true
        duplicate_code: true    
build:
    dependencies:
        before:
            - export PGPASSWORD=scrutinizer; psql -h 127.0.0.1 -c 'CREATE DATABASE mental_health_test;' -U scrutinizer
            - export PGPASSWORD=scrutinizer; psql -h 127.0.0.1 -d mental_health_test -c "CREATE USER mental WITH PASSWORD 'health';" -U scrutinizer
    environment:
        # Languages
        ruby: 2.4.4
        # Various pre-installed services that can be configured.
        postgresql: true
    tests:
        override:
            -   rubocop-run
            -   command: 'bundle exec rake spec'
                environment:
                    'SCRUTINIZER_CC_FILE': 'my-coverage'
                coverage:
                    file: 'my-coverage'
                    format: 'rb-cc'
filter:
    excluded_paths:
        - "script/" 
        - "public/" 
        - "bin/" 
        - "log/"
        - "tmp/"
        - "coverage/" 
        - "vendor/" 
        - ".bundle/" 
        - ".vscode/" 

Repository Config

checks:
    ruby: true
build:
    nodes:
        analysis:
            environment:
                ruby:
                    version: 2.4.2
                node:
                    version: 6.0.0
        tests: true
filter:
    excluded_paths:
        - 'spec/*'