view python/trunner.sh @ 264:f8b5da5784b8

Test
author Windel Bouwman
date Fri, 09 Aug 2013 16:30:26 +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