Skip to content
Snippets Groups Projects
Commit bcc2b7bd authored by Josh Friend's avatar Josh Friend
Browse files

run coverage on cookies and report to coveralls.io

parent ccf91009
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,8 @@ python:
- 3.3
- 3.4
install:
- pip install cookiecutter
- pip install cookiecutter coveralls
script:
- make
after_success:
- coveralls
......@@ -9,7 +9,8 @@ all: test
.PHONY: test
test: $(COOKIE)
cd $(COOKIE); pip install -r requirements/dev.txt
cd $(COOKIE); python manage.py test
cd $(COOKIE); coverage run --source $(COOKIE) manage.py test
cd $(COOKIE); coverage report -m
$(COOKIE): Makefile cookiecutter.json $(COOKIE_CRUMBS)
cookiecutter . --no-input
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment