diff --git a/R/README.md b/R/README.md index f9859b1a50dd4..31174c73526f2 100644 --- a/R/README.md +++ b/R/README.md @@ -1,4 +1,4 @@ -# R on Spark! +# R on Spark SparkR is an R package that provides a light-weight frontend to use Spark from R. diff --git a/dev/run-tests.py b/dev/run-tests.py index bb83429774fab..738f739d95d88 100755 --- a/dev/run-tests.py +++ b/dev/run-tests.py @@ -662,14 +662,13 @@ def main(): changed_files = identify_changed_files_from_git_commits( os.environ["GITHUB_SHA"], target_ref=os.environ["GITHUB_PREV_SHA"]) print("changed_files : %s" % changed_files) - new_test_modules = list(set(determine_modules_to_test( - determine_modules_for_files(changed_files)), deduplicated=False - ).intersection(test_modules)) + modules_to_test = determine_modules_to_test( + determine_modules_for_files(changed_files), deduplicated=False) - if modules.root not in new_test_modules: + if modules.root not in modules_to_test: # If root module does not exist, only test the intersected modules. # If root module is found, just run the modules as specified initially. - test_modules = new_test_modules + test_modules = list(set(modules_to_test).intersection(test_modules)) print("test_modules : %s" % test_modules)