b38dcfd2c9
should be run serially; needed to avoid file output race conditions in a common directory Signed-off-by: Karl W Schulz <karl.schulz@amd.com>
59 baris
776 B
TOML
59 baris
776 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",
|
|
"serial",
|
|
]
|