]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Changed how tests are invoked by going through a makefile
authorArmin Ronacher <armin.ronacher@active-4.com>
Thu, 4 Jul 2013 10:13:55 +0000 (12:13 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Thu, 4 Jul 2013 10:13:55 +0000 (12:13 +0200)
.travis.yml
Makefile [new file with mode: 0644]

index c5cbea922c94810becdda439cec50c28b2746f55..28b3c7d28766162e58268ce3ce3d9867f385ed82 100644 (file)
@@ -10,4 +10,14 @@ install:
   - pip install pytz
   - pip install --editable .
 
-script: python setup.py test
+script: make test
+
+notifications:
+  email: false
+  irc:
+    channels:
+      - "chat.freenode.net#pocoo"
+    on_success: change
+    on_failure: always
+    use_notice: true
+    skip_join: true
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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