Passed
Pull Request — master (#612)
by
unknown
13:03
created

Checkout Config

build:
  environment:
    python: 3.7.6
  nodes:
    coverage:
      project_setup:
        override:
          - pip install -r requirements.txt
          - pip install -r requirements_dev.txt
      tests:
        override:
          - command: 'pytest tests --cov=tabpy --cov-config=setup.cfg'
            coverage:
              file: '.coverage'
              config_file: 'setup.cfg'
              format: 'py-cc'
    analysis:
      project_setup:
        override: 
          - pip install -r requirements.txt
      tests:
        override: [py-scrutinizer-run]
  tests:
    before:
      - pip install -r requirements.txt
    override: [pytest]
checks:
  python:
    code_rating: true
    duplicate_code: true
filter:
  excluded_paths:
    - '*/tests/*'
  dependency_paths:
    - 'lib/*'

Repository Config

checks:
    python:
        code_rating: true
        duplicate_code: true
build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - py-scrutinizer-run
                    -
                        command: pylint-run
                        use_website_config: true
        tests: true
filter:
    excluded_paths:
        - '*/test/*'
    dependency_paths:
        - 'lib/*'