Skip to content

Instantly share code, notes, and snippets.

View Winawer's full-sized avatar

Steven Hamblin Winawer

View GitHub Profile
@florent-babylon
florent-babylon / testrunner.sh
Created June 2, 2016 10:25
Python TDD on steroids
# Dependencies:
# brew install terminal-notifier
# Run the tests and notifies of success or failure.
# NB - the icons are optional, remove the whole "-appIcon $path" if you don't need them.
NOTIF=/Applications/terminal-notifier.app/Contents/MacOS/terminal-notifier
python -m unittest test/test_*_model.py
if [ $? = 0 ]