Test Failed
Push — master ( 820d6d...9e02d1 )
by sam
03:48
created

Checkout Config

imports:
    - php

filter:
    excluded_paths: [vendor/*, test/*]

build:
    nodes:
        analysis:
            tests:
                override:
                    - php-scrutinizer-run

        tests-and-coverage:
            tests:
                override:
                    -
                        command: "composer update"
                        command: "make phpunit"
                        coverage:
                            file: "coverage.clover"
                            file: "coverage/index.html"
                            format: "php-clover"

Repository Config

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
    
        coverage:
          tests:
            override:
              - command: 'make test'
                coverage:
                  file: coverage/index.html   # <- Set this to where we find the coverage data.
                                              #    The path is relative to the current directory.
                  format: clover
filter:
    excluded_paths:
        - 'test/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true