Skip to content

Commit

Permalink
Relax the file server test timeouts and remove the link to the instal…
Browse files Browse the repository at this point in the history
…lation screencasts as they are now obsolete
  • Loading branch information
pavel-kirienko committed Jan 25, 2024
1 parent f80e083 commit 7610a62
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ Afterward do endeavor to read the docs: **`yakut --help`**

Check for new versions every now and then: **`pip install --upgrade yakut`**

Installation & configuration screencasts are available for [Windows](https://forum.opencyphal.org/t/screencast-of-installing-configuring-yakut/1197/2?u=pavel.kirienko), [GNU/Linux](https://forum.opencyphal.org/t/screencast-of-installing-configuring-yakut/1197/1?u=pavel.kirienko), and [macOS](https://www.youtube.com/watch?v=dQw4w9WgXcQ).

### Additional third-party tools

Since Yakut heavily relies on YAML/JSON documents exchanged via stdin/stdout, [**`jq`**](https://stedolan.github.io/jq/) is often needed for any non-trivial usage of the tool, so consider installing it as well. Users of GNU/Linux will likely find it in the default software repositories (`pacman -S jq`, `apt install jq`, etc.).
Expand Down
2 changes: 1 addition & 1 deletion tests/cmd/file_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async def _unittest_file_server_pnp(compiled_dsdl: typing.Any) -> None:
),
)
try:
fc = FileClient(cln_node, 42, response_timeout=15.0)
fc = FileClient(cln_node, 42, response_timeout=30.0) # Large timeout is needed for Windows CI.
await asyncio.sleep(3.0) # Let the server initialize.
assert srv_proc.alive

Expand Down

0 comments on commit 7610a62

Please sign in to comment.