autobahn: make timeout higher

It seems like GitHub Actions went slower in the last months since we
sometimes observe a problem when our `autobahn-server` is not started
quickly enough which leads to the autobahn suite trying to connect to
the server that is not yet running resulting into failed pipeline.

See https://github.com/snapview/tokio-tungstenite/runs/6658266507?check_suite_focus=true
This commit is contained in:
Daniel Abramov 2022-05-30 19:18:51 +02:00 committed by Sebastian Dröge
parent f5025ed696
commit 31dac03929
2 changed files with 2 additions and 2 deletions

View File

@ -31,6 +31,6 @@ docker run -d --rm \
crossbario/autobahn-testsuite \
wstest -m fuzzingserver -s 'autobahn/fuzzingserver.json'
sleep 3
sleep 5
cargo run --release --features async-std-runtime --example autobahn-client
test_diff

View File

@ -23,7 +23,7 @@ function test_diff() {
}
cargo run --release --features async-std-runtime --example autobahn-server & WSSERVER_PID=$!
sleep 3
sleep 5
docker run --rm \
-v "${PWD}/autobahn:/autobahn" \