File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -391,20 +391,20 @@ def run_scala_tests_maven(test_profiles):
391
391
392
392
def run_scala_tests_sbt (test_modules , test_profiles ):
393
393
# declare the variable for reference
394
- sbt_test_goals = None
394
+ sbt_test_goals = []
395
395
396
396
if "ALL" in test_modules :
397
397
sbt_test_goals = ["test" ]
398
398
else :
399
399
# if we only have changes in SQL, MLlib, Streaming, or GraphX then build
400
400
# a custom test list
401
401
if "SQL" in test_modules and "CORE" not in test_modules :
402
- sbt_test_goals = ["catalyst/test" ,
403
- "sql/test" ,
404
- "hive/test" ,
405
- "hive-thriftserver/test" ,
406
- "mllib/test" ,
407
- "examples/test" ]
402
+ sbt_test_goals + = ["catalyst/test" ,
403
+ "sql/test" ,
404
+ "hive/test" ,
405
+ "hive-thriftserver/test" ,
406
+ "mllib/test" ,
407
+ "examples/test" ]
408
408
if "MLLIB" in test_modules and "CORE" not in test_modules :
409
409
sbt_test_goals += ["mllib/test" , "examples/test" ]
410
410
if "STREAMING" in test_modules and "CORE" not in test_modules :
You can’t perform that action at this time.
0 commit comments