From 25e7e7da700d926fdbfc55e4e44dafa29f330dc6 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 3 Jul 2014 16:59:49 -0400 Subject: [PATCH] Test coveralls. --- .travis.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index de041fa..c8dbb88 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,14 @@ language: python python: - - "2.6" - - "2.7" - - "3.2" - - "3.3" - - "3.4" -install: python setup.py build -script: python setup.py -q test + - 2.6 + - 2.7 + - 3.2 + - 3.3 + - 3.4 +install: + - pip install coveralls + - python setup.py build +script: + - coverage run --source=mwparserfromhell setup.py -q test +after_success: + - coveralls