garethr / localbuilder
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
930856c
commit 930856c38f220fc8e9f5de5ca954fdfd0604da70
tree 7e08adf0ffeb91f3678096e432f57bcb51b605e8
parent 48b4115b8c4799501cd460b76412b659b56e4e63
tree 7e08adf0ffeb91f3678096e432f57bcb51b605e8
parent 48b4115b8c4799501cd460b76412b659b56e4e63
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
README | ||
| |
localbuilder.py | ||
| |
test_localbuilder.py |
README
Localbuilder is a simple solution to local Continuous Integration as well as being useful for a few other common tasks during development. It's written in Python but could be used on projects using any language. ./localbuilder --path /path/to/watch --command /command/to/execute You can also specify the time between checks with the --period option. This defaults to 60 seconds. Basic usage involves setting it to watch your working project folder. Whenever you make changes to any of the files, localbuilder will execute the specified command. Personally I use this mainly to execute a unit test suite whenever I make changes to a project.

