Skip to content

Instantly share code, notes, and snippets.

View jsvini's full-sized avatar
🙌

Vinícius Alves jsvini

🙌
View GitHub Profile
@jsvini
jsvini / Makefile
Created February 4, 2014 00:58 — forked from turicas/Makefile
test:
clear
nosetests --with-coverage --cover-package name_utils test_name_utils.py
clean:
find -regex '.*\.pyc' -exec rm {} \;
find -regex '.*~' -exec rm {} \;
.PHONY: test clean