From b074a1baf553822f0608c53dbe257df379d55e0f Mon Sep 17 00:00:00 2001 From: Rob Harrigan Date: Wed, 26 Feb 2014 10:45:37 -0500 Subject: [PATCH] Testing coveralls --- .travis.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index af2361b..d341262 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,10 @@ language: python python: - - "2.7" -# command to install dependencies -install: "pip install -r requirements.txt" -# command to run tests -script: python setup.py test + - 2.7 +install: + - pip install -r requirements.txt + - pip install coveralls +script: + coverage run --source=ftpretty setup.py test +after_success: + coveralls