1 # Copyright 2022 Canonical Ltd.
3 # Licensed under the Apache License, Version 2.0 (the "License"); you may
4 # not use this file except in compliance with the License. You may obtain
5 # a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 # License for the specific language governing permissions and limitations
15 # For those usages not covered by the Apache License, Version 2.0 please
16 # contact: legal@canonical.com
18 # To get in touch with the maintainers, please contact:
19 # osm-charmers@lists.launchpad.net
21 # Testing tools configuration
25 [tool.coverage.report]
28 [tool.pytest.ini_options]
30 log_cli_level = "INFO"
32 # Formatting tools configuration
35 target-version = ["py38"]
40 # Linting tools configuration
45 exclude = [".git", "__pycache__", ".tox", "build", "dist", "*.egg_info", "venv"]
46 select = ["E", "W", "F", "C", "N", "R", "D", "H"]
47 # Ignore W503, E501 because using black creates errors with this
48 # Ignore D107 Missing docstring in __init__
49 ignore = ["W503", "E501", "D107"]
50 # D100, D101, D102, D103: Ignore missing docstrings in tests
51 per-file-ignores = ["tests/*:D100,D101,D102,D103,D104"]
52 docstring-convention = "google"
53 # Check for properly formatted copyright header in each file
54 copyright-check = "True"
55 copyright-author = "Canonical Ltd."
56 copyright-regexp = "Copyright\\s\\d{4}([-,]\\d{4})*\\s+%(author)s"