rust-postgres/.travis.yml
2016-12-20 15:42:51 -08:00

15 lines
469 B
YAML

language: rust
cache: cargo
sudo: required
rust:
- nightly
- 1.10.0
addons:
postgresql: 9.4
before_script:
- "./.travis/setup.sh"
script:
- cargo test --manifest-path=postgres/Cargo.toml
- cargo test --manifest-path=postgres/Cargo.toml --features "$(cargo read-manifest --manifest-path=postgres/Cargo.toml | jq -r '.features|keys|map(select(. != "with-security-framework" and . != "with-schannel"))|join(" ")')"
- cargo test --manifest-path=postgres-tokio/Cargo.toml