Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,32 @@ mypy_path =
files =
*.py,
src
exclude = (^(src/tests)/.*$)
exclude = (?x)(
^src/tests/( # Tests
test_cte_f29_data_models
| test_dte_data_models
| test_dte_parse
| test_extras_dj_filters
| test_extras_dj_form_fields
| test_extras_dj_model_fields
| test_extras_mm_fields
| test_libs_crypto_utils
| test_libs_dataclass_utils
| test_libs_io_utils
| test_libs_tz_utils
| test_libs_xml_utils
| test_rcv_parse_csv
| test_rtc_data_models
| test_rtc_data_models_aec
| test_rtc_data_models_cesiones_periodo
| test_rtc_xml_utils
| test_rut
| test_rut_crypto_utils
)\.py$
| ^src/tests/( # Test object factories
cte_f29_factories
)\.py$
)
plugins =
pydantic.mypy

Expand Down
Loading