Actually fix feature tests

This commit is contained in:
Steven Fackler 2016-09-21 19:52:24 -07:00
parent 0df9b32544
commit ae3cea7de6
2 changed files with 2 additions and 3 deletions

View File

@ -10,4 +10,4 @@ before_script:
- "./.travis/setup.sh"
script:
- cargo test
- cargo test --features $(cargo read-manifest | jq -r '.features|keys|map(select(. != "with-security-framework"))|join(" ")')
- cargo test --features "$(cargo read-manifest | jq -r '.features|keys|map(select(. != "with-security-framework"))|join(" ")')"

View File

@ -3,10 +3,9 @@ use std::error;
use std::f32;
use std::f64;
use std::fmt;
use std::io::{Read, Write};
use std::result;
use postgres::{Connection, TlsMode, Result};
use postgres::{Connection, TlsMode};
use postgres::error::Error;
use postgres::types::{ToSql, FromSql, WrongType, Type, IsNull, Kind, SessionInfo};