aboutsummaryrefslogtreecommitdiff
path: root/external/docker-integration-tests
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@databricks.com>2016-04-20 20:30:43 -0700
committerJosh Rosen <joshrosen@databricks.com>2016-04-20 20:30:43 -0700
commit90933e2afaec170b0f82ef61a443d69c40f4cda5 (patch)
treeeee95908ea7a8d637da9c9c37a43ea09dc93e47c /external/docker-integration-tests
parent24f338ba7b34df493dd49bbc354d08f5e3afbb85 (diff)
downloadspark-90933e2afaec170b0f82ef61a443d69c40f4cda5.tar.gz
spark-90933e2afaec170b0f82ef61a443d69c40f4cda5.tar.bz2
spark-90933e2afaec170b0f82ef61a443d69c40f4cda5.zip
[HOTFIX] Ignore all Docker integration tests
The Docker integration tests are failing very often (https://spark-tests.appspot.com/failed-tests) so I think we should disable these suites for now until we have time to improve them. Author: Josh Rosen <joshrosen@databricks.com> Closes #12549 from JoshRosen/ignore-all-docker-tests.
Diffstat (limited to 'external/docker-integration-tests')
-rw-r--r--external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/MySQLIntegrationSuite.scala3
-rw-r--r--external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/OracleIntegrationSuite.scala3
-rw-r--r--external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/PostgresIntegrationSuite.scala3
3 files changed, 9 insertions, 0 deletions
diff --git a/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/MySQLIntegrationSuite.scala b/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/MySQLIntegrationSuite.scala
index a70ed98b52..aa47228eff 100644
--- a/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/MySQLIntegrationSuite.scala
+++ b/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/MySQLIntegrationSuite.scala
@@ -21,9 +21,12 @@ import java.math.BigDecimal
import java.sql.{Connection, Date, Timestamp}
import java.util.Properties
+import org.scalatest.Ignore
+
import org.apache.spark.tags.DockerTest
@DockerTest
+@Ignore
class MySQLIntegrationSuite extends DockerJDBCIntegrationSuite {
override val db = new DatabaseOnDocker {
override val imageName = "mysql:5.7.9"
diff --git a/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/OracleIntegrationSuite.scala b/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/OracleIntegrationSuite.scala
index a48d3e203b..357866b87c 100644
--- a/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/OracleIntegrationSuite.scala
+++ b/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/OracleIntegrationSuite.scala
@@ -20,6 +20,8 @@ package org.apache.spark.sql.jdbc
import java.sql.Connection
import java.util.Properties
+import org.scalatest.Ignore
+
import org.apache.spark.sql.test.SharedSQLContext
import org.apache.spark.tags.DockerTest
@@ -44,6 +46,7 @@ import org.apache.spark.tags.DockerTest
* repository.
*/
@DockerTest
+@Ignore
class OracleIntegrationSuite extends DockerJDBCIntegrationSuite with SharedSQLContext {
import testImplicits._
diff --git a/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/PostgresIntegrationSuite.scala b/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/PostgresIntegrationSuite.scala
index 79dd70116e..6546d4cfd7 100644
--- a/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/PostgresIntegrationSuite.scala
+++ b/external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/PostgresIntegrationSuite.scala
@@ -20,12 +20,15 @@ package org.apache.spark.sql.jdbc
import java.sql.Connection
import java.util.Properties
+import org.scalatest.Ignore
+
import org.apache.spark.sql.Column
import org.apache.spark.sql.catalyst.expressions.Literal
import org.apache.spark.sql.types.{ArrayType, DecimalType}
import org.apache.spark.tags.DockerTest
@DockerTest
+@Ignore
class PostgresIntegrationSuite extends DockerJDBCIntegrationSuite {
override val db = new DatabaseOnDocker {
override val imageName = "postgres:9.4.5"