-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
27 lines (25 loc) · 944 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
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 79
skip_glob = [".github/*", ".idea/*", ".pytest_cache/*", "data/*", "docs/*", "models/*", "venv/*"]
[tool.pytest.ini_options]
filterwarnings = [
'ignore:the imp module is deprecated:DeprecationWarning',
'ignore:distutils Version classes are deprecated:DeprecationWarning',
'ignore:[a-zA-Z]* is deprecated and will be removed in Pillow 10:DeprecationWarning',
'ignore:The distutils package is deprecated and slated:DeprecationWarning',
'ignore:pkg_resources is deprecated:DeprecationWarning',
'ignore:Tensorflow Addons:UserWarning',
'ignore:\n\nTensorFlow Addons:UserWarning',
'ignore:Deprecated call to `pkg_resources.declare_namespace:DeprecationWarning',
]
env = [
"CUDA_VISIBLE_DEVICES = ''"
]