Created
August 8, 2011 01:14
-
-
Save jefftriplett/1131022 to your computer and use it in GitHub Desktop.
watchmedo demo for running CI without a buildbot or jenkins
This file contains hidden or 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 | |
# this simply runs "django-admin.py test" every time it detects that a *.py | |
# file has changed. | |
watchmedo shell-command --patterns="*.py" --ignore-directories --recursive --command="django-admin.py test --noinput" project_name/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment