mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
a9bd68d96e
* Add default options for pytest * updating DIRECTORY.md * Move pytest settings to pyproject.toml * Move coverage settings to the pyproject.toml * Return --doctest-continue-on-failure to pytest * Convert pytest args to list * Update pyproject.toml Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
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/*
|