Files
D-SCRIPT/pyproject.toml
2022-06-23 13:36:06 -04:00

36 lines
495 B
TOML

[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.coverage.paths]
source = ["dscript"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::UserWarning",
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
python_files = "test_*.py"
testpaths = [
"dscript/tests",
]