housekeeping

This commit is contained in:
Chris Forbes 2013-07-24 18:53:31 +12:00
parent 78722cade4
commit f1473cf641
3 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View file

@ -4,3 +4,4 @@ lib
local local
*.db *.db
*.pyc *.pyc
*.sw?

Binary file not shown.

7
objrepo/watchtest.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
while true; do
find . -iname '*.py' | xargs inotifywait -q -e CLOSE_WRITE
sleep 1
./manage.py test "$@"
done