Skip to content

Commit 3fcf166

Browse files
committed
Disable range tests on travis
1 parent a9f8911 commit 3fcf166

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ use super::error::hack::{SyntaxError,
2626
QueryCanceled,
2727
InvalidCatalogName};
2828
use super::types::{ToSql, FromSql, PgInt4, PgVarchar};
29+
#[cfg(not(travis))]
2930
use super::types::range::{Range, Inclusive, Exclusive, RangeBound};
3031
use super::pool::PostgresConnectionPool;
3132

@@ -342,6 +343,7 @@ fn test_tm_params() {
342343
}
343344
344345
#[test]
346+
#[cfg(not(travis))]
345347
fn test_int4range_params() {
346348
test_type("INT4RANGE", [(Some(Range::new(None, None)), "'(,)'"),
347349
(Some(Range::new(None, Some(RangeBound::new(100i32, Exclusive)))), "'(,100)'"),

0 commit comments

Comments
 (0)