-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
57 lines (51 loc) · 1.26 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools >= 43", "wheel", "setuptools_scm[toml] >= 3.4"]
build-backend = "setuptools.build_meta"
[tool.black]
target-version = ["py38"]
[tool.coverage.report]
exclude_lines = [
"@(abc.)?abstract*",
"except ImportError(.*):",
"if __name__ == .__main__.:",
"pragma: no cover",
]
[tool.coverage.run]
omit = [
"*/setup.py",
"*/dist/*",
"*/tests/*",
"*/.tox/*",
"*/.eggs/*",
]
[tool.isort]
known_first_party = [
"Collector",
"CovReporter",
"EC2StatusReporter",
"FTB",
"Reporter",
"TaskStatusReporter",
"covmanager",
"crashmanager",
"ec2spotmanager",
"taskmanager",
]
profile = "black"
[tool.pytest.ini_options]
log_level = "DEBUG"
DJANGO_SETTINGS_MODULE = "server.settings_test"
pythonpath = [".", "server"]
addopts = ["-v", "--cov=.", "--cov-report", "term-missing"]
filterwarnings = [
'ignore:"@coroutine" decorator:DeprecationWarning:aiohttp',
'ignore:You passed a bytestring:DeprecationWarning:flake8.options.config',
"ignore:Using or importing the ABCs from 'collections':DeprecationWarning:celery.canvas",
"ignore:Using or importing the ABCs from 'collections':DeprecationWarning:yaml",
]
norecursedirs = [
".*",
"build",
"dist",
]
[tool.setuptools_scm]