diff --git a/pyproject.toml b/pyproject.toml index 897a582..2c1c433 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,6 @@ dependencies = [ cli = ["click"] tests = [ "pytest", - "pytest-cov", "pytest-timeout", "coverage[toml]", ] @@ -80,7 +79,7 @@ exclude = [ namespaces = false [tool.pytest.ini_options] -addopts = "-ra --timeout 300 --cov" +addopts = "-ra" testpaths = ["tests/"] norecursedirs = [".*", "build", "dist", "news", "tasks", "docs"] markers = [ diff --git a/tox.ini b/tox.ini index 7ecf155..3b8b33b 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,7 @@ setenv = LC_ALL = en_US.UTF-8 deps = -e .[tests,cli] -commands = coverage run -m pytest +commands = coverage run -m pytest --timeout 300 install_command = python -m pip install {opts} {packages} --upgrade-strategy=eager usedevelop = True