Test Setup Failed
Push — master ( 299946...d1af9f )
by Christian
08:55
created

Checkout Config

build:
  nodes:
    my-tests:
      environment:
        php:
          version: 7.3  # or any other released version
      cache:
        disabled: false
        directories:
          - ~/.composer/cache

  dependencies:
    override:
      - composer install --ignore-platform-reqs --no-interaction

build_failure_conditions:
  - 'elements.rating(<= C).new.exists'                        # No new classes/methods with a rating of C or worse allowed
  - 'project.metric_change("scrutinizer.test_coverage", < 0)' # Code Coverage decreased from previous inspection

Repository Config

build:
    nodes:
        my-tests:
            environment:
                php:
                    version: 7.4  # or any other released version    
        analysis:
            environment:
                php:
                    version: 7.4
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
        tests: true
filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php: {  }