Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ dependencies = [
cli = ["click"]
tests = [
"pytest",
"pytest-cov",
"pytest-timeout",
"coverage[toml]",
]
Expand Down Expand Up @@ -81,7 +80,7 @@ exclude = [
namespaces = false

[tool.pytest.ini_options]
addopts = "-ra --timeout 300 --cov"
addopts = "-ra"
testpaths = ["tests/"]
norecursedirs = [".*", "build", "dist", "news", "tasks", "docs"]
markers = [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down