# HG changeset patch # User Andrew Azores # Date 1505484051 14400 # Node ID 745245d33789092df05cffc145ab7bf9dc91548b # Parent 2e6d2b6f31ef9863cbef8de469a3765a519bee7a Run web-client integration tests on build Reviewed-by: stooke Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-September/025034.html diff -r 2e6d2b6f31ef -r 745245d33789 thermostat-ng.sh --- a/thermostat-ng.sh Fri Sep 15 11:43:52 2017 +0200 +++ b/thermostat-ng.sh Fri Sep 15 10:00:51 2017 -0400 @@ -202,7 +202,13 @@ export NODE_ENV=testing export GATEWAY_URL npm install - npm run build + if [ $CYGWIN_MODE == 1 ] ; then + # FIXME: web-client integration tests do not currently run on Windows, so + # only run unit tests + npm run build + else + npm run verify + fi } build_web_gateway() {