Skip to content
Open
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
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ filterwarnings = ["error", "ignore::DeprecationWarning"]
# Doctest python code in docs, python code in src docstrings, test functions in tests

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment belongs to the line below the ones you've added. Might be useful to add a comment for why these lines are needed as well. It's not obvious what they do.

testpaths = "docs src tests"
asyncio_mode = "auto"
timeout = 10

timeout = 1.5
timeout_method = "thread"
timeout_func_only = true
[tool.coverage.run]
patch = ["subprocess"]
data_file = "/tmp/blueapi.coverage"
Expand Down Expand Up @@ -160,6 +161,8 @@ commands = [
"pytest",
"-n",
"logical",
"--max-worker-restart",
"0",
"tests/unit_tests",
"--cov=blueapi",
"--cov-report",
Expand Down
Loading