From 06662dcefe5d792b998b643f57a50a3e197e7a0a Mon Sep 17 00:00:00 2001 From: Holden Karau Date: Wed, 20 May 2015 00:18:21 -0700 Subject: [PATCH] add mising blank line for style checks --- python/pyspark/tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/pyspark/tests.py b/python/pyspark/tests.py index 94a113c94a112..f9fb37f7fc139 100644 --- a/python/pyspark/tests.py +++ b/python/pyspark/tests.py @@ -1813,6 +1813,7 @@ def test_startTime(self): with SparkContext() as sc: self.assertGreater(sc.startTime, 0) + @unittest.skipIf(not _have_scipy, "SciPy not installed") class SciPyTests(PySparkTestCase):