Skip to content
Snippets Groups Projects
Commit 7496abaf authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Remove mypy

parent cbb4bdc0
No related branches found
No related tags found
No related merge requests found
......@@ -60,9 +60,6 @@ script:
# Run python code style checks
- flake8
# Type check the project
- mypy .
# Collect static
- python manage.py collectstatic --noinput --verbosity=0
......
......@@ -12,7 +12,6 @@ stellar==0.4.3
django-tinymce4-lite==1.7.0
uwsgidecorators==1.1.0
mypy==0.550
factory_boy==2.9.2
# wagtail_factories - waiting on merge and release form master branch
git+git://github.com/todd-dembrey/wagtail-factories.git#egg=wagtail_factories
......
[mypy]
show_column_numbers = True
ignore_missing_imports = True
[mypy-opentech.*]
ignore_errors = True
# Turn on type checking in the apply folder
[mypy-opentech.apply.funds*]
check_untyped_defs = True
ignore_errors = False
[mypy-opentech.apply.funds.tests.factories*]
ignore_errors = True
# Enforce writing type definitions within workflow
[mypy-opentech.apply.funds.workflow*]
disallow_untyped_defs = True
# Exclude migrations globally - must be at end
[mypy-*.migrations*]
ignore_errors = True
# Exclude management commands globally - must be at end
[mypy-*.management*]
ignore_errors = True
[flake8]
ignore = E501,F405
exclude = migrations,node_modules
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment