Skip to content

Commit 7b298dd

Browse files
committed
Unsuppress potentially useful output for integ tests
1 parent 572793d commit 7b298dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/bat.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,22 @@ jobs:
3636
- name: Run MATLAB statement with quotes 1
3737
uses: ./
3838
with:
39-
command: "eval(\"a = 1+2\"); assert(a == 3); eval('b = 3+4'); assert(b == 7);"
39+
command: "eval(\"a = 1+2\"), assert(a == 3); eval('b = 3+4'), assert(b == 7);"
4040

4141
- name: Run MATLAB statement with quotes 2
4242
uses: ./
4343
with:
44-
command: 'eval("a = 1+2"); assert(a == 3); eval(''b = 3+4''); assert(b == 7);'
44+
command: 'eval("a = 1+2"), assert(a == 3); eval(''b = 3+4''), assert(b == 7);'
4545

4646
- name: Run MATLAB statement with quotes 3
4747
uses: ./
4848
with:
49-
command: a = """hello world"""; b = '"hello world"'; assert(strcmp(a,b));
49+
command: a = """hello world""", b = '"hello world"', assert(strcmp(a,b));
5050

5151
- name: Run MATLAB statement with symbols
5252
uses: ./
5353
with:
54-
command: a = " !""#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~"; b = char([32:126]); assert(strcmp(a, b), a+b);
54+
command: a = " !""#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~", b = char([32:126]), assert(strcmp(a, b), a+b);
5555

5656
- name: Run MATLAB statement in working directory
5757
uses: ./

0 commit comments

Comments
 (0)