diff options
author | Matthias Krüger <matthias.krueger@famsik.de> | 2018-07-25 21:46:45 +0200 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-07-25 19:46:45 +0000 |
commit | ddb9a558170ad16f19135b2f6a5a7a7e8ac61c3c (patch) | |
tree | 8e8a1adbb4e9185524e870393082295e6fd2a68e /.travis.yml | |
parent | d25134bc6b8b13d5ff550c950c65b6e9c4a7a267 (diff) | |
download | alacritty-ddb9a558170ad16f19135b2f6a5a7a7e8ac61c3c.tar.gz alacritty-ddb9a558170ad16f19135b2f6a5a7a7e8ac61c3c.zip |
Fix clippy lints and run font tests on travis
This fixes some existing clippy issues and runs the `font` tests through travis.
Testing of copypasta crate was omitted due to problens when running on headless travis-ci environment (x11 clipboard would fail).
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index d346c9f9..eebed8b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,3 +31,4 @@ matrix: script: - if [ -n "$CLIPPY" ]; then cargo clippy --all-features --all-targets; fi - if [ -z "$CLIPPY" ]; then cargo test; fi + - if [ -z "$CLIPPY" ]; then cargo test -p font; fi |