aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@databricks.com>2015-05-31 15:17:05 -0700
committerReynold Xin <rxin@databricks.com>2015-05-31 15:17:05 -0700
commit9126ea4d1c5c468f3662e76e0231b4d64c7c9699 (patch)
tree2137951d8e8514f6c65f2c1616acbb9f518d8d65
parent46576ab303e50c54c3bd464f8939953efe644574 (diff)
downloadspark-9126ea4d1c5c468f3662e76e0231b4d64c7c9699.tar.gz
spark-9126ea4d1c5c468f3662e76e0231b4d64c7c9699.tar.bz2
spark-9126ea4d1c5c468f3662e76e0231b4d64c7c9699.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.
-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"
}