Arquivos
rocm-systems/pyproject.toml
T

48 linhas
621 B
TOML
Original Visão Normal Histórico

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",
]
2022-11-04 14:49:36 -05:00
pythonpath = [
".",
"src",
2023-12-18 09:40:53 -06:00
"src/omniperf_soc",
2022-11-04 14:49:36 -05:00
"src/utils",
2023-12-18 09:40:53 -06:00
"src/omniperf_analyze/utils",
"tests"
2022-11-04 14:49:36 -05:00
]
2023-12-18 09:40:53 -06:00
markers = [
"kernel_execution",
"ipblocks",
"misc",
"mem",
"sort",
"join",
"verbosity",
"dispatch",
]