diff options
| author | Dylan Araps <[email protected]> | 2017-06-27 17:57:14 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-06-27 17:57:14 +1000 |
| commit | ea160a42dec139148845aeb3043db5ba23bd9a6c (patch) | |
| tree | 24ebf656944839f6328b1bef09a46a56800a1ca6 /.travis.yml | |
| parent | General: Remove find_packages (diff) | |
| parent | tests: Fix comment. (diff) | |
| download | pywal-ea160a42dec139148845aeb3043db5ba23bd9a6c.tar.xz pywal-ea160a42dec139148845aeb3043db5ba23bd9a6c.zip | |
Merge pull request #11 from dylanaraps/tests
Tests: Start writing tests.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 46e5aaa..f924d60 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,14 @@ language: python python: - "3.6" +before_install: + - sudo apt-get -qq update + - sudo apt-get install -y imagemagick + install: - pip install flake8 pylint script: - - flake8 pywal setup.py - - pylint --ignore-imports=yes pywal setup.py + - flake8 pywal tests setup.py + - pylint --ignore-imports=yes pywal tests setup.py + - python setup.py test |