diff options
| author | Dylan Araps <[email protected]> | 2017-07-23 20:07:03 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-23 20:07:03 +1000 |
| commit | 640946562faf83e589c176b7adaf7da76fb01f7e (patch) | |
| tree | bdc474fb40c8397cca1cb306a6dffd80ecef5df8 /.travis.yml | |
| parent | docs: Remove toc (diff) | |
| parent | travis: Fix module name (diff) | |
| download | pywal-640946562faf83e589c176b7adaf7da76fb01f7e.tar.xz pywal-640946562faf83e589c176b7adaf7da76fb01f7e.zip | |
Merge pull request #56 from dylanaraps/rd
misc: README changes and added code coverage.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 36c9a18..c420e8e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,12 @@ before_install: - sudo apt-get install -y imagemagick install: - - pip install flake8 pylint + - pip install flake8 pylint codecov script: - flake8 pywal tests setup.py - pylint pywal tests setup.py - - python setup.py test + - coverage run --source=pywal/ ./setup.py test + +after_success: +- codecov |