view python/trunner.sh @ 238:90637d1bbfad

Added test sequence 2
author Windel Bouwman
date Sat, 20 Jul 2013 13:18:04 +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