summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2013-07-04 12:13:55 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2013-07-04 12:13:55 +0200
commit233c0a1ccdb7ec3a2c79ff63901522ff04f9a54b (patch)
tree0a351b6924a6ac4402e7126601ef64e5f0f0ff33 /Makefile
parent6fd92a8cda9ff6f3b402965d21dc9235b1fd20c9 (diff)
downloadbabel-233c0a1ccdb7ec3a2c79ff63901522ff04f9a54b.tar.gz
Changed how tests are invoked by going through a makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e96ef8b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+test:
+ python setup.py test
+
+develop:
+ pip install --editable .
+
+tox-test:
+ @tox
+
+.PHONY: test develop tox-test