Skip to content

Commit

Permalink
windows disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
harrydevnull committed Mar 22, 2017
1 parent 627a60a commit f14b182
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/create_insert_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ struct User {
pub some_map: Option<Map>,
}


#[cfg(not(windows))]
#[test]
fn write_and_read_from_cassandra() {
run_test(|| read_write())
Expand Down
2 changes: 2 additions & 0 deletions tests/crud_operations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ const SELECT_BLOB: &'static str = "SELECT * FROM my_ks.blob;";
// 4. insert values into x
// 5. select values from x and map to Rust
// ...

#[cfg(not(windows))]
#[test]
fn main_crud_operations() {
let authenticator = NoneAuthenticator;
Expand Down
2 changes: 2 additions & 0 deletions tests/simple_connect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ use cdrs::transport::TransportTcp;
const _ADDR: &'static str = "127.0.0.1:9042";



#[cfg(not(windows))]
#[test]
fn connect_to_cassandra() {
const _ADDR: &'static str = "127.0.0.1:9042";
Expand Down

0 comments on commit f14b182

Please sign in to comment.