diff options
| author | Val Neekman <un33kvu@gmail.com> | 2015-04-20 22:44:10 -0400 |
|---|---|---|
| committer | Val Neekman <un33kvu@gmail.com> | 2015-04-20 22:44:10 -0400 |
| commit | d7a9184eb22634bd56d7db6231b45876bf6aebe4 (patch) | |
| tree | c5e2d6a815a6676978bb4a600cf25c66dd719445 | |
| parent | cf9179187f4a14031cf29b58c162bfb58afb7bfe (diff) | |
| download | python-slugify-d7a9184eb22634bd56d7db6231b45876bf6aebe4.tar.gz | |
Update .travis.yml
| -rw-r--r-- | .travis.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index fb83472..a6a90de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,10 +12,15 @@ install: - pip install -q -r requirements.txt --use-mirrors - pip install -e . - pip install pep8 + - pip install coveralls - pip install https://github.com/un33k/pyflakes/tarball/master before_script: - "pep8 --exclude=migrations --ignore=E501,E225,E128 ." - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pyflakes -x W slugify; fi -script: python test.py +script: coverage run --source=slugify python test.py + +after_success: + coveralls + |
