diff options
| author | Dylan Araps <[email protected]> | 2017-07-23 20:15:29 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-07-23 20:15:29 +1000 |
| commit | f4c14335f35321d0475408460f2919a4d9cbfa23 (patch) | |
| tree | 5a8f3a413d2a70163c917d0355f58726cb5a2f8a /.travis.yml | |
| parent | tests: Added a test for disown() (diff) | |
| parent | Merge pull request #56 from dylanaraps/rd (diff) | |
| download | pywal-f4c14335f35321d0475408460f2919a4d9cbfa23.tar.xz pywal-f4c14335f35321d0475408460f2919a4d9cbfa23.zip | |
Merge branch 'master' of github.com:dylanaraps/wal.py
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 |