view python/trunner.sh @ 269:5f8c04a8d26b

Towards better modularity
author Windel Bouwman
date Sun, 18 Aug 2013 17:43:18 +0200
parents 521567d17388
children
line wrap: on
line source

#!/usr/bin/bash

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