From: Armin Ronacher Date: Thu, 4 Jul 2013 10:13:55 +0000 (+0200) Subject: Changed how tests are invoked by going through a makefile X-Git-Tag: 1.0~136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=233c0a1ccdb7ec3a2c79ff63901522ff04f9a54b;p=thirdparty%2Fbabel.git Changed how tests are invoked by going through a makefile --- diff --git a/.travis.yml b/.travis.yml index c5cbea92..28b3c7d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 index 00000000..e96ef8b7 --- /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