Skip to content

Commit

Permalink
Run 200 times faster
Browse files Browse the repository at this point in the history
  • Loading branch information
tdas committed Oct 17, 2016
1 parent 1977144 commit 9638b30
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions dev/run-tests.py
Expand Up @@ -390,7 +390,7 @@ def run_scala_tests_maven(test_profiles):

def run_scala_tests_sbt(test_modules, test_profiles):

sbt_test_goals = [ "sql/test-only *StreamingQueryListener*" ]
sbt_test_goals = [ "sql/test-only *StreamingQueryListener*" for x in range(0, 200) ]

if not sbt_test_goals:
return
Expand All @@ -399,8 +399,7 @@ def run_scala_tests_sbt(test_modules, test_profiles):

print("[info] Running Spark tests using SBT with these arguments: ",
" ".join(profiles_and_goals))
for x in range(0, 100):
exec_sbt(profiles_and_goals)
exec_sbt(profiles_and_goals)


def run_scala_tests(build_tool, hadoop_version, test_modules, excluded_tags):
Expand Down

0 comments on commit 9638b30

Please sign in to comment.