Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #41 from antonagestam/f-coveralls
Browse files Browse the repository at this point in the history
add coveralls
  • Loading branch information
antonagestam committed Apr 11, 2014
2 parents e9c8655 + 705a589 commit c4f111a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[run]
source = collectfast
[report]
omit = */tests/*
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.pyc
.coverage
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ env:
install:
- pip install -r test-requirements.txt
- pip install -q Django==$DJANGO_VERSION
script: "./runtests.py"
script: "coverage run --source=collectfast ./runtests.py"
after_success:
coveralls
matrix:
exclude:
- python: "3.2"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Collectfast – A Faster Collectstatic

[![Downloads](https://pypip.in/v/Collectfast/badge.png)](https://pypi.python.org/pypi/Collectfast)
[![Build Status](https://travis-ci.org/antonagestam/collectfast.svg)](https://travis-ci.org/antonagestam/collectfast)
[![Coverage Status](https://coveralls.io/repos/antonagestam/collectfast/badge.png)](https://coveralls.io/r/antonagestam/collectfast)

The fast `collectstatic` for Django projects with S3 as storage backend.

Expand Down
1 change: 1 addition & 0 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
#Django==1.4
mock==1.0.1
coveralls==0.4.1

0 comments on commit c4f111a

Please sign in to comment.