add logs for flaky multipart test

This commit is contained in:
Sean McArthur
2017-10-26 14:05:33 -07:00
parent 99e7f7a1b0
commit 5993aa84cc
2 changed files with 4 additions and 1 deletions

View File

@@ -32,4 +32,4 @@ cache:
script: script:
- cargo build $FEATURES - cargo build $FEATURES
- cargo test -v $FEATURES - RUST_LOG=hyper,reqwest cargo test -v $FEATURES

View File

@@ -1,3 +1,4 @@
extern crate env_logger;
extern crate reqwest; extern crate reqwest;
#[macro_use] #[macro_use]
@@ -5,6 +6,8 @@ mod support;
#[test] #[test]
fn test_multipart() { fn test_multipart() {
let _ = env_logger::init();
let form = reqwest::multipart::Form::new() let form = reqwest::multipart::Form::new()
.text("foo", "bar"); .text("foo", "bar");