Github user jongyoul commented on the pull request:

    https://github.com/apache/incubator-zeppelin/pull/38#issuecomment-93649985
  
    @bzz Simply add this test in SparkInterpreterTest.java
    
    ```
    @Test
    public void testSparkConfCorrect() {
      for (Tuple2<String, String> tuple2 : 
repl.getSparkContext().getConf().getAll()) {
        if (tuple2._1().startsWith("spark."))
          assertFalse(String.format("configuration starting from 'spark.' 
should not be empty. [%s]: [%s]", tuple2._1(), tuple2._2()), 
tuple2._2().isEmpty());
      }
    }
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to