From e05ed863730694a771bdf4a374c3882dcc878cd7 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Mon, 7 Mar 2022 13:53:12 +0100 Subject: [PATCH] Update the tester to check for the WoT-conforming things Requires https://github.com/WebThingsIO/webthing-tester/pull/5 --- test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.sh b/test.sh index 6f6eb0c..8809384 100755 --- a/test.sh +++ b/test.sh @@ -15,7 +15,7 @@ cargo build --example single-thing cargo run --example single-thing & EXAMPLE_PID=$! sleep 5 -./webthing-tester/test-client.py +./webthing-tester/test-client.py --flavor WoT kill -15 $EXAMPLE_PID # build and test the multiple-things example @@ -23,5 +23,5 @@ cargo build --example multiple-things cargo run --example multiple-things & EXAMPLE_PID=$! sleep 5 -./webthing-tester/test-client.py --path-prefix "/0" +./webthing-tester/test-client.py --path-prefix "/0" --flavor WoT kill -15 $EXAMPLE_PID