Skip to content

Commit

Permalink
Only run the integration tests in lib.rs
Browse files Browse the repository at this point in the history
Once Rust 1.27 is released we can use a more general command for both
unit and integration tests:
```
cargo test --tests --lib
```
rust-lang/cargo#5387 (comment)

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
  • Loading branch information
AzureMarker committed Jun 2, 2018
1 parent 4ef3a1d commit dd33060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ matrix:

script:
- |
cargo test --lib
cargo test --lib --release
cargo test --test lib
cargo test --test lib --release
cargo build --example basic
cargo build --release --example basic

0 comments on commit dd33060

Please sign in to comment.