Files
rocm-systems/pyproject.toml
T
Jose Santos f9e806833b blocks -> block
Signed-off-by: Jose Santos <josantos@amd.com>
2024-03-08 16:27:19 -06:00

58 lines
765 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",
]
pythonpath = [
".",
"src",
"src/omniperf_soc",
"src/utils",
"src/omniperf_analyze/utils",
"tests"
]
markers = [
"kernel_execution",
"block",
"misc",
"mem",
"sort",
"join",
"verbosity",
"dispatch",
"list_metrics",
"filter_block",
"filter_kernel",
"dispatch",
"normal_unit",
"max_stat",
"time_unit",
"decimal",
"col",
"kernel_verbose",
]