From: Zack Cerza Date: Mon, 8 Jun 2026 20:33:32 +0000 (-0600) Subject: pyproject.toml: Absorb pytest config X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6780589bc72f70dbb002b71e604cd7ae0b49ca2c;p=teuthology.git pyproject.toml: Absorb pytest config Signed-off-by: Zack Cerza --- diff --git a/pyproject.toml b/pyproject.toml index 38ff5992b..6320ca3ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -139,3 +139,10 @@ version_scheme = "python-simplified-semver" [tool.ruff] lint.select = ["F", "E9"] + +[tool.pytest] +testpaths = ["teuthology", "scripts"] +norecursedirs = [".git", "build", "virtualenv", "teuthology.egg-info", ".tox", "*/integration", "teuthology/task/tests"] +log_cli = true +log_level = "NOTSET" +addopts = ["-p", "no:cacheprovider"] diff --git a/pytest.ini b/pytest.ini deleted file mode 100644 index 60d435c8b..000000000 --- a/pytest.ini +++ /dev/null @@ -1,5 +0,0 @@ -[pytest] -norecursedirs = .git build virtualenv teuthology.egg-info .tox */integration task/tests -log_cli=true -log_level=NOTSET -addopts = -p no:cacheprovider