From 89d8ac50a85a2dc07701c74075f3fb0fcdc1467f Mon Sep 17 00:00:00 2001 From: Victor Porof Date: Thu, 19 Jul 2018 19:03:19 +0200 Subject: [PATCH] Run `serde_support` tests for the EDN module on CI (#792) Signed-off-by: Victor Porof --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index d70d050b..6403cfe1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,7 @@ matrix: fast_finish: true script: - cargo test --verbose --all + - cargo test --features edn/serde_support --verbose --all # We can't pick individual features out with `cargo test --all` (At the time of this writing, this # works but does the wrong thing because of a bug in cargo, but its fix will be to disallow doing # this all-together, see https://github.com/rust-lang/cargo/issues/5364 for more information). To