Skip to content

Commit 683e62b

Browse files
committed
test: disable tauri cli tests on demo5 and demo6
They depend on an external file, and the interpreter does not currently capture this in the trace. Signed-off-by: Nick Mitchell <[email protected]>
1 parent 91a6d52 commit 683e62b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tauri-cli.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@ jobs:
4949
pdl run ./demos/demo1.pdl | grep 'write a hello'
5050
5151
# 3. `run` subcommand works with UI demos (json source)
52-
# demo8 uses a private model? not sure
52+
# demo5,demo6 each depend on an external file, and the interpreter does not currently capture this in the trace
53+
# demo8 currently requires building a model which the interpreter does not directly support
54+
# demo9 takes forever, so... for now skip it
5355
for i in ./src/demos/*.json
54-
do if [[ $(basename $i) != "demo8.json" ]] && [[ $(basename $i) != "demo9.json" ]]; then pdl run $i; fi
56+
do if [[ $(basename $i) != "demo5.json" ]] && [[ $(basename $i) != "demo6.json" ]] && [[ $(basename $i) != "demo8.json" ]] && [[ $(basename $i) != "demo9.json" ]]; then pdl run $i; fi
5557
done
5658
5759
- name: Tear down xvfb

0 commit comments

Comments
 (0)