Skip to content

Commit 97c166c

Browse files
mfikesswannodette
authored andcommitted
CLJS-2106: Revise CI so you can see test output
1 parent 7089c9d commit 97c166c

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.travis.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,13 @@ before_script:
1616
- bin/cljsc src/test/cljs "{:optimizations :advanced :output-wrapper true :verbose true :compiler-stats true :parallel-build true :output-dir \"builds/out-adv\"}" > builds/out-adv/core-advanced-test.js
1717

1818
script:
19-
- jsc builds/out-adv/core-advanced-test.js | grep -o '[[:digit:]]*' | tail -n 2 | python script/check.py
20-
- ./spidermoney/js -f builds/out-adv/core-advanced-test.js | grep -o '[[:digit:]]*' | tail -n 2 | python script/check.py
21-
- jjs builds/out-adv/core-advanced-test.js | grep -o '[[:digit:]]*' | tail -n 2 | python script/check.py
22-
- script/test-self-host | grep -o '[[:digit:]]*' | tail -n 2 | python script/check.py
23-
- script/test-self-parity | grep -o '[[:digit:]]*' | tail -n 2 | python script/check.py
19+
- jsc builds/out-adv/core-advanced-test.js | tee test-out.txt
20+
- grep -o '[[:digit:]]*' test-out.txt | tail -n 2 | python script/check.py
21+
- ./spidermoney/js -f builds/out-adv/core-advanced-test.js | tee test-out.txt
22+
- grep -o '[[:digit:]]*' test-out.txt | tail -n 2 | python script/check.py
23+
- jjs builds/out-adv/core-advanced-test.js | tee test-out.txt
24+
- grep -o '[[:digit:]]*' test-out.txt | tail -n 2 | python script/check.py
25+
- script/test-self-host | tee test-out.txt
26+
- grep -o '[[:digit:]]*' test-out.txt | tail -n 2 | python script/check.py
27+
- script/test-self-parity | tee test-out.txt
28+
- grep -o '[[:digit:]]*' test-out.txt | tail -n 2 | python script/check.py

0 commit comments

Comments
 (0)