diff options
| author | Dylan Araps <[email protected]> | 2017-07-23 20:01:18 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-07-23 20:01:18 +1000 |
| commit | 32d5a748294e2b164a333abc10be928aab47076c (patch) | |
| tree | bdc474fb40c8397cca1cb306a6dffd80ecef5df8 /.travis.yml | |
| parent | travis: Fix coverage (diff) | |
| download | pywal-32d5a748294e2b164a333abc10be928aab47076c.tar.xz pywal-32d5a748294e2b164a333abc10be928aab47076c.zip | |
travis: Fix module name
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 78a6edc..c420e8e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ install: script: - flake8 pywal tests setup.py - pylint pywal tests setup.py - - coverage run --source=my_module/ ./setup.py test + - coverage run --source=pywal/ ./setup.py test after_success: - codecov |