Skip to content

Commit

Permalink
Ignore the tests
Browse files Browse the repository at this point in the history
  Can be run conditionally and some can be converted to hydra
  • Loading branch information
Suranjan Kumar committed Apr 23, 2019
1 parent 8327d69 commit 133b359
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class SnapshotConsistencyTest
snc.sql(s"drop table if exists $tableName")
}

test("test insert atomicity in column table") {
ignore("test insert atomicity in column table") {
snc.sql(s"DROP TABLE IF EXISTS $tableName")
snc.sql(s"CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " +
"USING column " +
Expand Down Expand Up @@ -90,7 +90,7 @@ class SnapshotConsistencyTest
logInfo("Successful")
}

test("test delete atomicity in column table") {
ignore("test delete atomicity in column table") {
snc.sql(s"DROP TABLE IF EXISTS $tableName")
snc.sql(s"CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " +
"USING column " +
Expand Down Expand Up @@ -145,7 +145,7 @@ class SnapshotConsistencyTest
logInfo("Successful")
}

test("test update atomicity in column table") {
ignore("test update atomicity in column table") {
snc.sql(s"DROP TABLE IF EXISTS $tableName")
snc.sql(s"CREATE TABLE $tableName (Col1 INT not null, Col2 INT not null) " +
"USING column " +
Expand Down Expand Up @@ -206,7 +206,7 @@ class SnapshotConsistencyTest
logInfo("Successful")
}

test("test update atomicity in column table with eviction") {
ignore("test update atomicity in column table with eviction") {
snc.sql(s"DROP TABLE IF EXISTS $tableName")
snc.sql(s"CREATE TABLE $tableName " +
s"(Col1 INT not null, Col2 INT not null, Col3 String) " +
Expand Down Expand Up @@ -273,7 +273,7 @@ class SnapshotConsistencyTest
}


test("test update atomicity in column table row buffer") {
ignore("test update atomicity in column table row buffer") {
snc.sql(s"DROP TABLE IF EXISTS $tableName")
snc.sql(s"CREATE TABLE $tableName(Col1 INT ,Col2 INT) " +
"USING column " +
Expand Down

0 comments on commit 133b359

Please sign in to comment.