Test Setup Failed
Branch dev_refactor (89a05f)
by Grant
09:58
created

Checkout Config

build:
    nodes:
      docker-setup:
        environment:
            timezone: EST
            docker: true
            mysql: 5.6
            nginx:
                sites:
                    talentcloud:
                        host: '127.0.0.1'
                        web_root: 'public/'
                        index: 'index.php index.html'

#           selenium:
#               version: 2.53
#               chrome_driver_version: 2.22
#               browser_name:

    dependencies:
        before:
            - composer update
            - composer install
            - mysql -uroot -e 'CREATE DATABASE talentcloud'

    tests:
       override:
           -
                command: 'vendor/bin/phpunit --coverage-clover=coverage.clover'
                coverage:
                    file: 'coverage.clover'
                    format: 'clover'



filter:
  excluded_paths:
    - '*/data/*'
    - '*/node_modules/*'
    - '*/tests/*'
    - '*/vendor/*'

checks:
  php:
    remove_extra_empty_lines: true
    remove_php_closing_tag: true
    remove_trailing_whitespace: true
    fix_use_statements:
      remove_unused: true
      preserve_multiple: false
      preserve_blanklines: true
      order_alphabetically: true
    fix_php_opening_tag: true
    fix_linefeed: true
    fix_line_ending: true
    fix_identation_4spaces: true
    fix_doc_comments: true

tools:
  external_code_coverage: true
  js_hint:
    filter:
      excluded_paths: ['*/tests/*','*/vendor/*','*/node_modules/*','*/data/*']
  php_mess_detector:
    filter:
      excluded_paths: ['*/tests/*','*/vendor/*','*/node_modules/*','*/data/*']
  sensiolabs_security_checker: true
  php_pdepend:
    excluded_dirs:
      - tests
      - vendor
      - data
      - node_modules

  external_code_coverage:
   timeout: '777'
   runs: 2

  php_hhvm: true
  # PHP Similarity Analyzer and Copy/paste Detector cannot be used at
  # the same time right now. Make sure to either remove, or disable one.
  php_sim: true
  php_cpd: false

Repository Config

checks:
    javascript: true
    php:
        code_rating: true
        remove_extra_empty_lines: true
        remove_php_closing_tag: true
        remove_trailing_whitespace: true
        fix_use_statements:
            remove_unused: true
            preserve_multiple: false
            preserve_blanklines: true
            order_alphabetically: true
        fix_php_opening_tag: true
        fix_linefeed: true
        fix_line_ending: true
        fix_identation_4spaces: true
        fix_doc_comments: true

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