-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 953 Bytes
/
pyproject.toml
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
[build-system]
requires = ["Kivy==2.1.0"]
build-backend = "Buildozer"
[tool.pylint]
recursive = "y"
# load-plugins = "pylint_report"
ignore-patterns = [
"draft*",
"venv",
"build",
"dist",
"old*",
".buildozer",
"kivads_src",
"kivads.py",
"image.py",
]
disable = [
"wrong-import-position",
"no-member",
"no-name-in-module",
"too-many-instance-attributes",
]
[tool.pylint.basic]
# Add names that will always be accepted by pylint
good-names = ["i", "j", "k", "x", "y", "_"]
[tool.pylint.reports]
output-format = "pylint_report.CustomJsonReporter"
reports = "y"
# [tool.pytest.ini_options]
# addopts = "--ignore=.buildozer --cov-report html:reports/coverage --cov-report xml --cov"
# To generate html report with pytlint : python -m pylint . | pylint_report > report.html
# To generate html reports with pytest : pytest . --ignore=.buildozer --cov-report html:reports/coverage --cov-report xml --cov