Passed
Pull Request — master (#90)
by Jan
09:39
created

Checkout Config

checks:
    python:
        code_rating: true
        duplicate_code: true

build:
    dependencies:
        before:
            - pip3 install -r requirements.txt
            - npm i -g eslint
            - pip3 install isort pylint flake8 coverage
    environment:
        python: 3.9.6
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - py-scrutinizer-run
                    - pylint-run
                    - command: tox
                      environment: { PYTHONPATH:  }
                      coverage:
                          file: '.coverage'
                          format: 'py-cc'
        tests: true

filter:
    excluded_paths:
        - '*/tests/*'
        - 'docs/*'
    dependency_paths:
        - 'lib/*'

Repository Config

checks:
    python:
        code_rating: true
        duplicate_code: true

build:
    dependencies:
        before:
            - pip3 install -r requirements.txt
    environment:
        python: 3.9.6
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - py-scrutinizer-run
                    - pylint-run
        tests: true

filter:
    excluded_paths:
        - '*/tests/*'
        - '*/docs/*'
    dependency_paths:
        - 'lib/*'