Files
rocm-systems/pyproject.toml
T

36 righe
486 B
TOML

2022-11-04 14:49:36 -05:00
[tool.black]
line-length = 90
target-version = ['py38', 'py39']
include = '\.py$'
exclude = '''
(
/(
\.eggs
| \.git
| \.github
| \.tox
| \.venv
| \.misc
| \.vscode
| \.pyc
| dist
| external
| .pytest_cache
| build
| build-omniperf
)/
)
'''
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--cov=src",
]
pythonpath = [
".",
"src",
"src/utils",
"src/omniperf_analyze/utils"
2022-11-04 14:49:36 -05:00
]