-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
executable file
·85 lines (73 loc) · 2.61 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
; https://docs.pytest.org/en/latest/reference.html#ini-options-ref
; to debug errors use this args `--pdbcls=IPython.terminal.debugger:Pdb --pdb`
[tool:pytest]
filterwarnings =
error
ignore::UserWarning
ignore::ImportWarning
ignore::DeprecationWarning
ignore::django.core.paginator.UnorderedObjectListWarning
ignore::django.utils.deprecation.RemovedInDjango50Warning
ignore::django.utils.deprecation.RemovedInDjango51Warning
addopts = --full-trace --color=yes --showlocals --full-trace --showlocals --quiet
--cov=sme_sigpae_api --cov-report=xml --no-cov-on-fail --maxfail=1 --cov-fail-under=74
--reuse-db
--numprocesses=auto
--ds=config.settings.test
; --testmon
; --pdbcls=IPython.terminal.debugger:Pdb --pdb
[coverage:run]
source = sme_sigpae_api/*
omit = */migrations/*, */__tests__/*, *.html, *.txt, *corrige_marcas_fabricantes_duplicados.py,
*corrige_alergias_intolerancias_duplicadas.py, sme_sigpae_api/dados_comuns/actions.py,
*carga_dados.py, *carga_usuarios_planilha.py, *ajuste_logs_antigos.py, *ajuste_logs_antigos.py,
*unificar_homologacoes_antigas.py, *carga_produtos_marcas.py, *vincula_produtos_editais.py,
*unifica_lote_14.py, *criar_datas_horas_produtos_editais.py, *cria_logs_alunos_por_dia_escolas_cei.py,
*vincula_editais_e_dias_sobremesa_doce.py, *exclui_codigo_codae_escolas_especificas.py, *unifica_lote.py
plugins =
django_coverage_plugin
[flake8]
max-line-length = 120
exclude = migrations, */__tests__/*
ignore =
# pycharm não pula linha no atalho..
I201,
# pycharm não seta ordem correta..
I100,
# __str__ em todos os models por hora ainda nao
DJ08,
# docstring não usadas por hora
D102,D106,D101,D103,D100,D104,D105,D401,
# nao tem o que fazer quando a string é muito longa
W503,W504,E501
max-complexity = 6
extend-ignore = E203
[pycodestyle]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
[mypy]
python_version = 3.9
check_untyped_defs = True
ignore_errors = False
ignore_missing_imports = True
strict_optional = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
plugins =
mypy_django_plugin.main
[mypy-*.migrations.*]
# Django migrations should not produce any errors:
ignore_errors = True
[mypy-*.__tests__.*]
# Django tests should not produce any errors:
ignore_errors = True
[mypy-*.settings.*]
# Django tests should not produce any errors:
ignore_errors = True
[mypy.plugins.django-stubs]
django_settings_module = config.settings.local
[black]
line-length = 120
[isort]
profile = black