Passed
Branch master (b256af)
by Humberto
14:46 queued 12:40
created

Checkout Config

checks:
    python:
        code_rating: true
        duplicate_code: true
filter:
    paths: ["pyof/*", "tests/*"]
build:
    environment:
        python: 3.6.0
        postgresql: false
        redis: false
    dependencies:
        override:
            - true
    tests:
        before:
            - pip install coverage
        override:
            -
                command: 'tox'
                coverage:
                    file: '.coverage'
                    config_file: '.coveragerc'
                    format: 'py-cc'
            - py-scrutinizer-run

Repository Config

checks:
    python:
        duplicate_code: true
        code_rating: true
        variables_unused_wildcard_import: true
        variables_used_before_assignment: true
        variables_unused_variable: true
        variables_unused_import: true
        variables_unused_argument: true
        variables_redefined_builtin: true
        typecheck_unexpected_keyword_arg: true
        typecheck_too_many_function_args: true
        basic_empty_docstring: true
        basic_eval_used: true
        basic_exec_used: true
    javascript: true

filter:
    excluded_paths:
        - '*/test/*'
        - '*.min.js'
build: true