diff --git a/.travis.yml b/.travis.yml index a242db7..f945980 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,4 +32,4 @@ cache: script: - cargo build $FEATURES - - cargo test -v $FEATURES + - RUST_LOG=hyper,reqwest cargo test -v $FEATURES diff --git a/tests/multipart.rs b/tests/multipart.rs index e832b33..247ec7d 100644 --- a/tests/multipart.rs +++ b/tests/multipart.rs @@ -1,3 +1,4 @@ +extern crate env_logger; extern crate reqwest; #[macro_use] @@ -5,6 +6,8 @@ mod support; #[test] fn test_multipart() { + let _ = env_logger::init(); + let form = reqwest::multipart::Form::new() .text("foo", "bar");