From 8d30c5765bc531b7d798cf3827926a26eb4c38ee Mon Sep 17 00:00:00 2001 From: Josh Friend Date: Sun, 2 Nov 2014 22:58:00 -0500 Subject: [PATCH] looks like `coveralls` needs to be run from the dir containing .coverage --- .travis.yml | 2 -- Makefile | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 74baa44..0d32a47 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,3 @@ install: - pip install cookiecutter coveralls script: - make -after_success: - - coveralls diff --git a/Makefile b/Makefile index fba34f7..7e2d195 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,7 @@ test: $(COOKIE) cd $(COOKIE); pip install -r requirements/dev.txt cd $(COOKIE); coverage run --source $(COOKIE) manage.py test cd $(COOKIE); coverage report -m + cd $(COOKIE); coveralls $(COOKIE): Makefile cookiecutter.json $(COOKIE_CRUMBS) cookiecutter . --no-input