Test Failed
Branch master (83cc14)
by Clive
02:00
created

Checkout Config

# .scrutinizer.yml
build:
    environment:
        php:
            version: 7.0.20
            
    tests:
        override:
            -
                command: 'vendor/bin/phpunit --coverage-clover=/tmp/coverage.xml'
                coverage:
                    file: '/tmp/coverage.xml'
                    format: 'clover'
                            
checks:
    php: true

filter:
    excluded_paths:
        - tests/*
        - vendor/*
    paths:
        - src/*

Repository Config

build:
    environment:
        variables:
            CM_API_KEY: 'e8e82e59a821d25cc8cd4cd7dd6ef89b'
            CM_CLIENT_ID: 'd411d9010fa37d6c4d51a0c1e7f76026'
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
            environment:
                node:
                    version: 6.0.0
        tests: true
filter:
    excluded_paths:
        - 'tests/*'
checks:
    php:
        phpunit_assertions: true

coding_style:
    php: {  }