Skip to content

Commit 43a0ced

Browse files
committed
Minor fixes
1 parent 3371441 commit 43a0ced

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/run-tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ def run_scala_tests_sbt(test_modules, test_profiles):
551551

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

554-
profiles_and_goals = test_profiles + sbt_test_goals
554+
profiles_and_goals = test_profiles + list(sbt_test_goals)
555555

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

647647
test_modules = determine_modules_to_test(changed_modules)

0 commit comments

Comments
 (0)