view python/trunner.sh @ 282:c137f1fe3e65

Add codeship hook
author Windel Bouwman
date Fri, 15 Nov 2013 09:32:37 +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