view python/trunner.sh @ 260:b2f94b4951f1

Nice-up
author Windel Bouwman
date Tue, 06 Aug 2013 18:29:53 +0200
parents 521567d17388
children 5f8c04a8d26b
line wrap: on
line source

#!/usr/bin/bash

DIR=.
while :; do
  echo "Awaiting changes in $DIR"
  inotifywait -r -e modify $DIR
  python -m unittest
done