forked from ethyca/fides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
95 lines (86 loc) · 2.09 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
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
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools", "wheel", "versioneer-518"] # PEP 508 specifications.
######
# MyPy
######
# [tool.mypy] Waiting for new version of Mypy
# warn_unused_configs = true
# ignore_missing_imports = true
# pretty = true
#######
# Black
#######
[tool.black]
py39 = true
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''
#######
# isort
#######
[tool.isort]
profile = "black"
line_length = 88
src_paths = ["src", "tests"]
########
# Pylint
########
[tool.pylint.messages_control]
ignore="migrations"
disable=[
"line-too-long",
"too-few-public-methods",
"duplicate-code",
"import-error",
"unused-argument",
"no-self-use",
"import-outside-toplevel",
"unsubscriptable-object", # Otherwise throws errors on certain Type annotations
"too-many-arguments",
"missing-module-docstring",
"raise-missing-from",
"fixme"]
extension-pkg-whitelist = ["pydantic", "zlib"]
[tool.pylint.reports]
reports="no"
output-format="colorized"
[tool.pylint.format]
max-line-length="88"
[tool.pylint.basic]
good-names="_,i,setUp,tearDown,maxDiff,default_app_config"
########
# Pytest
########
[tool.pytest.ini_options]
testpaths="tests"
log_level = "DEBUG"
addopts = ["--cov=fidesctl.ctl.core",
"--cov=fidesctl.cli",
"--cov-report=term-missing",
"-vv",
"--no-cov-on-fail",
"--disable-pytest-warnings"]
markers = [
"unit: only runs tests that don't require non-python dependencies (i.e. a database)",
"integration: only runs tests that require application dependencies (i.e. a database)",
"external: only runs tests that require access to non-docker, external services (i.e. Snowflake)",
"postgres: only runs the integration tests for postgres",
"mssql: only runs the integration tests for sqlserver/mssql",
"mysql: only runs the integration tests for mysql"
]
asyncio_mode = "auto"