Test Failed
Pull Request — main (#151)
by
unknown
05:30 queued 03:15
created

Checkout Config

# SPDX-License-Identifier Apache-2.0
# Source: https://github.com/dmyersturnbull/typed-dfs
#
build:
  environment:
    python: 3.11.4
  nodes:
    my-tests:
      dependencies:
        before:
          - "pip install --upgrade 'tox>=4.6,<5'"
          - "pip install --upgrade 'poetry-core>=1.4,<2'"
    analysis:
      project_setup:
        override:
          - true
      tests:
        override:
          - py-scrutinizer-run
          - command: pylint-run
            # we can control the exact checks on the website
            # for example, I disabled pylint checks that black contradicts or that I disagreed with
            #use_website_config: true
checks:
  python:
    code_rating: true
    duplicate_code: true
#filter:
# I actually like getting checks for these too
#excluded_paths:
#  - 'tests/*'
#  - 'docs/*'

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
filter:
    excluded_paths:
        - '*/test/*'
    dependency_paths:
        - 'lib/*'