aboutsummaryrefslogtreecommitdiff
path: root/python/run-tests
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@databricks.com>2015-05-31 15:17:05 -0700
committerDavies Liu <davies@databricks.com>2015-06-02 12:02:07 -0700
commit139c8240fdde765698c51a9243f8bc5171b03fbe (patch)
treecf5cb716adacbff05f9eaeda8b50da2c69465d6e /python/run-tests
parentfa292dc3dba9c3921ea30842a505bd9b6fda4522 (diff)
downloadspark-139c8240fdde765698c51a9243f8bc5171b03fbe.tar.gz
spark-139c8240fdde765698c51a9243f8bc5171b03fbe.tar.bz2
spark-139c8240fdde765698c51a9243f8bc5171b03fbe.zip
[MINOR] Enable PySpark SQL readerwriter and window tests
PySpark SQL's `readerwriter` and `window` doctests weren't being run by our test runner script; this patch re-enables them. Author: Josh Rosen <joshrosen@databricks.com> Closes #6542 from JoshRosen/enable-more-pyspark-sql-tests and squashes the following commits: 9f46ce4 [Josh Rosen] Enable PySpark SQL readerwriter and window tests.
Diffstat (limited to 'python/run-tests')
-rwxr-xr-xpython/run-tests2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/run-tests b/python/run-tests
index fcfb49556b..17dda3eada 100755
--- a/python/run-tests
+++ b/python/run-tests
@@ -76,6 +76,8 @@ function run_sql_tests() {
run_test "pyspark.sql.dataframe"
run_test "pyspark.sql.group"
run_test "pyspark.sql.functions"
+ run_test "pyspark.sql.readwriter"
+ run_test "pyspark.sql.window"
run_test "pyspark.sql.tests"
}