view python/trunner.sh @ 244:58155c7c4a8e

Add hexutil
author Windel Bouwman
date Wed, 24 Jul 2013 19:47:13 +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