Disable unix socket test

This commit is contained in:
Steven Fackler 2017-07-08 19:46:15 -07:00
parent 47b0db257c
commit c4367f1bbe
2 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,7 @@ fn test_connection_finish() {
}
#[test]
#[cfg_attr(not(unix), ignore)]
#[ignore] // doesn't work on our CI setup
fn test_unix_connection() {
let conn = or_panic!(Connection::connect(
"postgres://postgres@localhost:5433",

View File

@ -217,6 +217,7 @@ fn transaction() {
}
#[test]
#[ignore] // not supported on our CI setup :(
fn unix_socket() {
let mut l = Core::new().unwrap();
let handle = l.handle();