mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
21 lines
304 B
TOML
21 lines
304 B
TOML
|
[tool.pytest.ini_options]
|
||
|
markers = [
|
||
|
"mat_ops: mark a test as utilizing matrix operations.",
|
||
|
]
|
||
|
addopts = [
|
||
|
"--durations=10",
|
||
|
"--doctest-modules",
|
||
|
"--showlocals",
|
||
|
]
|
||
|
|
||
|
|
||
|
[tool.coverage.report]
|
||
|
omit = [".env/*"]
|
||
|
sort = "Cover"
|
||
|
|
||
|
#[report]
|
||
|
#sort = Cover
|
||
|
#omit =
|
||
|
# .env/*
|
||
|
# backtracking/*
|