You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .travis.yml
+3-1
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,9 @@ install:
15
15
script:
16
16
- go build -v arduino.cc/arduino-builder
17
17
- export TEST_PACKAGES=`go list arduino.cc/...`
18
-
- I=0; for PKG in $TEST_PACKAGES; do go test -v -timeout 30m -covermode=count -coverprofile=coverage.$I.out $PKG; ((I++)); done
18
+
- RES=0; I=0; for PKG in $TEST_PACKAGES; do go test -v -timeout 30m -covermode=count -coverprofile=coverage.$I.out $PKG; ((RES=RES+$?)); ((I++)); done; ( exit $RES )
0 commit comments