-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
44 lines (36 loc) · 853 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[aliases]
test = pytest
[tool:pytest]
addopts =
--doctest-modules --doctest-report=udiff
--cov=modello --cov-report=html --cov-report=term
--mypy
--ruff
python_files =
test_modello.py
examples/*.py
cache_dir = artefacts/reports/.pytest_cache
[coverage:run]
data_file = artefacts/reports/.coverage
source = modello.py
branch = True
[coverage:html]
directory = artefacts/reports/coverage-html
[mypy]
ignore_missing_imports = True
cache_dir = artefacts/reports/.mypy_cache
[mypy-modello]
disallow_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_decorators = True
[isort]
# Import Style
line_length = 120
force_grid_wrap = false
use_parentheses = true
include_trailing_comma = true
combine_as_imports = true
# Multiline Import Style: hanging grid grouped
multi_line_output = 5
[bdist_wheel]
python-tag=3