diff --git a/pyproject.toml b/pyproject.toml index 4cc94100..42141e03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,3 +15,17 @@ dev = [ "pytest-mock>=3.10.0", "pytest-xdist>=3.0.0", ] + +[tool.pytest.ini_options] +testpaths = ["tests"] +python_files = ["test_*.py"] +python_classes = ["Test*"] +python_functions = ["test_*"] +addopts = [ + "-v", + "--strict-markers", + "--strict-config", +] +markers = [ + "slow: marks tests as slow (deselect with '-m \"not slow\"')", +]