.travis.yml: Do tls tests, then rustdoc tests, then regular tests

This commit is contained in:
Tim Kuehn
2017-02-16 20:18:46 -08:00
parent fea8d5eb1d
commit bceaea1206

View File

@@ -21,9 +21,9 @@ before_script:
script:
- |
travis-cargo build && travis-cargo test && travis-cargo bench &&
travis-cargo build -- --features tls && travis-cargo test -- --features tls && travis-cargo bench -- --features tls &&
rustdoc --test README.md -L target/debug/deps -L target/debug
rustdoc --test README.md -L target/debug/deps -L target/debug &&
travis-cargo build && travis-cargo test && travis-cargo bench
after_success:
- travis-cargo coveralls --no-sudo