From db42d31c1d6ef9470f2ee9174167e42a904df248 Mon Sep 17 00:00:00 2001 From: Randy Barlow Date: Tue, 14 Oct 2014 14:14:36 -0400 Subject: [PATCH] Require 100% test coverage in Travis. --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dbdbf54c..f719cee7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,5 +2,8 @@ language: python python: - "2.6" - "2.7" + - "pypy" install: "pip install flake8" -script: flake8 --config=flake8.cfg . +before_script: flake8 --config=flake8.cfg . +script: nosetests --with-coverage --cover-package pulp_python --cover-min-percentage 100 --cover-erase +after_success: coveralls