7 lines
128 B
Bash
Executable file
7 lines
128 B
Bash
Executable file
#!/bin/bash
|
|
|
|
while true; do
|
|
find . -iname '*.py' | xargs inotifywait -q -e CLOSE_WRITE
|
|
sleep 1
|
|
./manage.py test "$@"
|
|
done
|