view python/trunner.sh @ 283:c9781c73e7e2

Added first kernel files
author Windel Bouwman
date Fri, 15 Nov 2013 12:26:50 +0100
parents 5f8c04a8d26b
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