rust-postgres/.travis.yml
Steven Fackler b0bed6ab4c Add a nightly feature
Currently uses the UnixStream from the standard library
2016-03-27 13:03:19 -07:00

15 lines
326 B
YAML

language: rust
sudo: required
rust:
- nightly
- beta
- 1.6.0
addons:
postgresql: 9.4
before_script:
- "./.travis/setup.sh"
script:
- cargo test
- cargo test --features "uuid rustc-serialize time unix_socket serde_json chrono openssl bit-vec eui48"
- (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --features nightly)