diff --git a/pyproject.toml b/pyproject.toml index 65f43caf..47923092 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,6 +75,11 @@ packages = [ "splunklib.ai.engines", ] +[tool.pytest.ini_options] +markers = ["app: requires sdk-app-collection", "smoke: essential smoke tests"] +junit_family = "xunit2" + + [tool.basedpyright] exclude = [".venv"] allowedUntypedLibraries = ["splunklib"] @@ -85,6 +90,7 @@ reportUnknownMemberType = false reportUnusedCallResult = false # https://docs.astral.sh/ruff/configuration/ + [tool.ruff] line-length = 100 diff --git a/pytest.ini b/pytest.ini deleted file mode 100644 index c09f1975..00000000 --- a/pytest.ini +++ /dev/null @@ -1,7 +0,0 @@ -[pytest] -markers = - app: requires sdk-app-collection - smoke: essential smoke tests - -junit_family = - xunit2