f9f8b749c8
Signed-off-by: colramos425 <colramos@amd.com>
36 lines
486 B
TOML
36 lines
486 B
TOML
[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"
|
|
]
|