summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2018-07-25 21:46:45 +0200
committerChristian Duerr <chrisduerr@users.noreply.github.com>2018-07-25 19:46:45 +0000
commitddb9a558170ad16f19135b2f6a5a7a7e8ac61c3c (patch)
tree8e8a1adbb4e9185524e870393082295e6fd2a68e /.travis.yml
parentd25134bc6b8b13d5ff550c950c65b6e9c4a7a267 (diff)
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.yml1
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