diff --git a/pyproject.toml b/pyproject.toml index caa4ab9..df90082 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ all = [ store = ["validate-pyproject-schema-store"] testing = [ "setuptools", - "pytest", + "pytest>=8.3.3", "pytest-cov", "pytest-xdist", "pytest-randomly", @@ -67,11 +67,12 @@ version_scheme = "no-guess-dev" [tool.pytest.ini_options] addopts = """ + --import-mode importlib --cov validate_pyproject --cov-report term-missing --doctest-modules - --verbose --strict-markers + --verbose """ norecursedirs = ["dist", "build", ".tox"] testpaths = ["src", "tests"] diff --git a/tests/pre_compile/__init__.py b/tests/pre_compile/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tox.ini b/tox.ini index d693c37..eacddd0 100644 --- a/tox.ini +++ b/tox.ini @@ -20,7 +20,6 @@ extras = all testing commands = - pytest --doctest-modules src pytest {posargs}