Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshRosen committed Jun 18, 2015
1 parent 3371441 commit 43a0ced
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def run_scala_tests_sbt(test_modules, test_profiles):

sbt_test_goals = set(itertools.chain.from_iterable(m.sbt_test_goals for m in test_modules))

profiles_and_goals = test_profiles + sbt_test_goals
profiles_and_goals = test_profiles + list(sbt_test_goals)

print "[info] Running Spark tests using SBT with these arguments:",
print " ".join(profiles_and_goals)
Expand Down Expand Up @@ -641,7 +641,7 @@ def main():
changed_modules = identify_changed_modules_from_git_commits("HEAD",
target_branch=target_branch)
if not changed_modules:
changed_modules = ['root']
changed_modules = [root]
print "[info] Found the following changed modules:", ", ".join(x.name for x in changed_modules)

test_modules = determine_modules_to_test(changed_modules)
Expand Down

0 comments on commit 43a0ced

Please sign in to comment.