tbranyen / combyne

A template engine that works the way you expect.
MIT License
144 stars 19 forks source link

Conditionals can now evaluate expressions #48

Closed johnhaley81 closed 10 years ago

johnhaley81 commented 10 years ago

So here's the relevant part of the output log of Travis

$ if ${SAUCE_LABS:=false}; then grunt karma:saucelabs; else npm test; fi;
Running "karma:saucelabs" (karma) task
ERROR [launcher.sauce]: Can not start safari
  Failed to start Sauce Connect:
  01 Oct 17:57:45 - Error: failed to remove matching tunnels.
01 Oct 17:57:45 - Cleaning up.
01 Oct 17:57:45 - Finished! Deleting tunnel.
ERROR [launcher.sauce]: Can not start chrome
  Failed to start Sauce Connect:
  01 Oct 17:57:45 - Error: failed to remove matching tunnels.
01 Oct 17:57:45 - Cleaning up.
01 Oct 17:57:45 - Finished! Deleting tunnel.
ERROR [launcher.sauce]: Can not start firefox
  Failed to start Sauce Connect:
  01 Oct 17:57:45 - Error: failed to remove matching tunnels.
01 Oct 17:57:45 - Cleaning up.
01 Oct 17:57:45 - Finished! Deleting tunnel.
ERROR [launcher.sauce]: Can not start internet explorer 7 (Windows XP)
  Failed to start Sauce Connect:
  01 Oct 17:57:45 - Error: failed to remove matching tunnels.
01 Oct 17:57:45 - Cleaning up.
01 Oct 17:57:45 - Finished! Deleting tunnel.
ERROR [launcher.sauce]: Can not start internet explorer 8 (Windows XP)
  Failed to start Sauce Connect:
  01 Oct 17:57:45 - Error: failed to remove matching tunnels.
01 Oct 17:57:45 - Cleaning up.
01 Oct 17:57:45 - Finished! Deleting tunnel.
ERROR [launcher.sauce]: Can not start internet explorer 9 (Windows 7)
  Failed to start Sauce Connect:
  01 Oct 17:57:45 - Error: failed to remove matching tunnels.
01 Oct 17:57:45 - Cleaning up.
01 Oct 17:57:45 - Finished! Deleting tunnel.
Warning: Task "karma:saucelabs" failed. Use --force to continue.
Aborted due to warnings.
The command "if ${SAUCE_LABS:=false}; then grunt karma:saucelabs; else npm test; fi;" exited with 3.
Done. Your build exited with 1.

It can't start the browser instances to test on. I don't think I'll be able to fix that.