mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-22 14:38:03 +01:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
1325ae4171
commit
1a8bca7ed8
1 changed files with 32 additions and 32 deletions
|
@ -1,38 +1,6 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# pytest
|
# pytest
|
||||||
###############################################################################
|
###############################################################################
|
||||||
[tool.pytest.ini_options]
|
|
||||||
addopts = """
|
|
||||||
--html=test_reports/pytest_result/pytest.html --color=yes --durations 20
|
|
||||||
--no-cov-on-fail --strict-markers --reuse-db
|
|
||||||
--driver=Firefox
|
|
||||||
-W error
|
|
||||||
-W "ignore:capabilities and desired_capabilities have been deprecated:DeprecationWarning:pytest_selenium.pytest_selenium"
|
|
||||||
-W "ignore:service_log_path has been deprecated:DeprecationWarning:pytest_selenium.pytest_selenium"
|
|
||||||
"""
|
|
||||||
markers = []
|
|
||||||
minversion = "6.0"
|
|
||||||
DJANGO_SETTINGS_MODULE = "charasheet.settings"
|
|
||||||
junit_family = "xunit1"
|
|
||||||
norecursedirs = [
|
|
||||||
".*",
|
|
||||||
"docker",
|
|
||||||
"documentation",
|
|
||||||
"static",
|
|
||||||
"public",
|
|
||||||
]
|
|
||||||
testpaths = [
|
|
||||||
"src",
|
|
||||||
]
|
|
||||||
python_files = [
|
|
||||||
"test_*.py",
|
|
||||||
"tests.py",
|
|
||||||
]
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# ruff
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
src = ["src"]
|
src = ["src"]
|
||||||
target-version = "py311"
|
target-version = "py311"
|
||||||
|
@ -72,3 +40,35 @@ convention = "pep257"
|
||||||
|
|
||||||
[tool.ruff.mccabe]
|
[tool.ruff.mccabe]
|
||||||
max-complexity = 10
|
max-complexity = 10
|
||||||
|
|
||||||
|
[tool.pytest.ini_options]
|
||||||
|
addopts = """
|
||||||
|
--html=test_reports/pytest_result/pytest.html --color=yes --durations 20
|
||||||
|
--no-cov-on-fail --strict-markers --reuse-db
|
||||||
|
--driver=Firefox
|
||||||
|
-W error
|
||||||
|
-W "ignore:capabilities and desired_capabilities have been deprecated:DeprecationWarning:pytest_selenium.pytest_selenium"
|
||||||
|
-W "ignore:service_log_path has been deprecated:DeprecationWarning:pytest_selenium.pytest_selenium"
|
||||||
|
"""
|
||||||
|
markers = []
|
||||||
|
minversion = "6.0"
|
||||||
|
DJANGO_SETTINGS_MODULE = "charasheet.settings"
|
||||||
|
junit_family = "xunit1"
|
||||||
|
norecursedirs = [
|
||||||
|
".*",
|
||||||
|
"docker",
|
||||||
|
"documentation",
|
||||||
|
"static",
|
||||||
|
"public",
|
||||||
|
]
|
||||||
|
testpaths = [
|
||||||
|
"src",
|
||||||
|
]
|
||||||
|
python_files = [
|
||||||
|
"test_*.py",
|
||||||
|
"tests.py",
|
||||||
|
]
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# ruff
|
||||||
|
###############################################################################
|
||||||
|
|
Loading…
Reference in a new issue