forked from pythonalicante/MeetupSelector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (32 loc) · 798 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
39
40
[tool.black]
line-length = 100
target-version = ['py310']
[tool.isort]
py_version = 310
profile = "black"
[tool.pydocstyle]
convention = "numpy"
[tool.mypy]
python_version = "3.10"
allow_untyped_globals = true
plugins = "mypy_django_plugin.main"
exclude = "(migrations)"
follow_imports = "silent"
[tool.django-stubs]
django_settings_module = "meetupselector.settings.dev"
[[tool.mypy.overrides]]
module = [
'celery.*',
'debug_toolbar.*',
'setuptools.*',
'decouple.*',
]
ignore_missing_imports = true
[tool.pytest]
mock_use_standalone_module = true
[tool.pytest.ini_options]
minversion = "6.0"
#addopts = "-n auto"
DJANGO_SETTINGS_MODULE = "meetupselector.settings.test"
python_files = "tests.py test_*.py *_tests.py tests_*.py"
required_plugins = "pytest-mock pytest-django pytest-cov"