Github user ckadner commented on the issue:
https://github.com/apache/bahir/pull/56
The test failure above reflects the current PR builder behavior, before
adding the `--fail-at-end` flag to the maven build.
All modules are skipped after test failure in `sql-cloudant`:
```
[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @
spark-sql-cloudant_2.11 ---
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Results :
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO] --- maven-surefire-plugin:2.19.1:test (test) @
spark-sql-cloudant_2.11 ---
[INFO] Skipping execution of surefire because it has already been run for
this configuration
[INFO]
[INFO] --- scalatest-maven-plugin:1.0:test (test) @ spark-sql-cloudant_2.11
---
Discovery starting.
Sql-cloudant tests that require Cloudant databases have been enabled by
the environment variables CLOUDANT_USER and CLOUDANT_PASSWORD.
Discovery completed in 186 milliseconds.
Run starting. Expected test count is: 23
CloudantOptionSuite:
- invalid api receiver option throws an error message
- empty username option throws an error message
- empty password option throws an error message
- empty databaseName throws an error message
ClientSparkFunSuite:
CloudantChangesDFSuite:
- dummy test to force build failure *** FAILED ***
org.scalatest.exceptions.TestFailedException was thrown.
(CloudantChangesDFSuite.scala:45)
- load and save data from Cloudant database
- load and count data from Cloudant search index
- load data and verify deleted doc is not in results
- load data and count rows in filtered dataframe
- save filtered dataframe to database
- save dataframe to database using createDBOnSave=true option
- load and count data from view
- load data from view with MapReduce function
- load data and verify total count of selector, filter, and view option
CloudantSparkSQLSuite:
- verify results from temp view of database n_airportcodemapping
- verify results from temp view of index in n_flight
CloudantAllDocsDFSuite:
- load and save data from Cloudant database
- load and count data from Cloudant search index
- load data and count rows in filtered dataframe
- save filtered dataframe to database
- save dataframe to database using createDBOnSave=true option
- load and count data from view
- load data from view with MapReduce function
Run completed in 3 minutes, 21 seconds.
Total number of tests run: 23
Suites: completed 6, aborted 0
Tests: succeeded 22, failed 1, canceled 0, ignored 0, pending 0
*** 1 TEST FAILED ***
[INFO]
------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] Apache Bahir - Parent POM .......................... SUCCESS [
4.411 s]
[INFO] Apache Bahir - Spark SQL Cloudant DataSource ....... FAILURE [03:39
min]
[INFO] Apache Bahir - Spark Streaming Akka ................ SKIPPED
[INFO] Apache Bahir - Spark SQL Streaming Akka ............ SKIPPED
[INFO] Apache Bahir - Spark Streaming MQTT ................ SKIPPED
[INFO] Apache Bahir - Spark SQL Streaming MQTT ............ SKIPPED
[INFO] Apache Bahir - Spark Streaming Twitter ............. SKIPPED
[INFO] Apache Bahir - Spark Streaming ZeroMQ .............. SKIPPED
[INFO] Apache Bahir - Spark Streaming Google PubSub ....... SKIPPED
[INFO] Apache Bahir - Spark Extensions Distribution ....... SKIPPED
[INFO]
------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 03:44 min
[INFO] Finished at: 2017-12-07T16:12:30-08:00
[INFO] Final Memory: 84M/2554M
[INFO]
------------------------------------------------------------------------
```
---