Test Failed
Push — master ( 1746fb...ca83e3 )
by Jacob
03:50
created

Checkout Config

build:
    environment:
        mysql: false
        postgresql: false
        redis: false
        rabbitmq: false
        mongodb: false
        php:
            version: 7.2

    cache:
        disabled: false
        directories:
            - ~/.composer/cache

    dependencies:
        override:
            - composer install --no-interaction --prefer-dist --no-suggest

    nodes:
        analysis:
            project_setup:
                override: true
            tests:
                override:
                    - php-scrutinizer-run
                    # - phpcs-run
        # tests: true

checks:
    php: true

filter:
    excluded_paths:
        - 'tests/*'

tools:
    external_code_coverage:
        timeout: 1800
        runs: 2

# build_failure_conditions:
#     - 'elements.rating(<= C).new.exists'
#     - 'issues.severity(>= MAJOR).new.exists'
#     - 'project.metric_change("scrutinizer.test_coverage", < -0.01)'

Repository Config

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    - command: phpcs-run
                      use_website_config: true
                    - command: vendor/bin/phpunit
                      coverage:
                        file: coverage.xml
                        format: clover
        tests: true
filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true