Created
February 6, 2010 19:13
-
-
Save BRMatt/296904 to your computer and use it in GitHub Desktop.
Useful script for automatically running unit tests in a loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Simple script for looping unit test runs | |
# Relies on a phpunit.xml config being in the cwd | |
# Author: [email protected] | |
for(( ; ; )); do clear; echo -e "`phpunit`"; sleep 10; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment