Test Failed
Branch circleci-project-setup (cbaa33)
by Mathieu
03:25
created

Checkout Config

filter:
  excluded_paths:
    - 'tests/*'
    - 'features/*'

checks:
  php: true

coding_style:
  php:
    spaces:
      around_operators:
        concatenation: true

build:
  nodes:
    analysis:
      project_setup:
        override:
          - 'true'

      tests:
        override:
          - php-scrutinizer-run
          - command: phpcs-run
            use_website_config: true
          - command: rm -Rf var/cache/test.sqlite var/cache/test
          - command: vendor/bin/phpunit --coverage-clover=build/logs/clover.xml
            coverage:
              file: build/logs/clover.xml
              format: clover

Repository Config

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    - command: phpcs-run
                      use_website_config: true
        tests: true
filter:
    excluded_paths:
        - 'tests/*'
        - 'features/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true