From b4d096ded6540c46a2b07b0b0897cbb0b43ba1e0 Mon Sep 17 00:00:00 2001 From: jerryshao Date: Tue, 1 Mar 2016 21:28:30 -0800 Subject: [BUILD][MINOR] Fix SBT build error with network-yarn module ## What changes were proposed in this pull request? ``` error] Expected ID character [error] Not a valid command: common (similar: completions) [error] Expected project ID [error] Expected configuration [error] Expected ':' (if selecting a configuration) [error] Expected key [error] Not a valid key: common (similar: commands) [error] common/network-yarn/test ``` `common/network-yarn` is not a valid sbt project, we should change to `network-yarn`. ## How was this patch tested? Locally run the the unit-test. CC rxin , we should either change here, or change the sbt project name. Author: jerryshao Closes #11456 from jerryshao/build-fix. --- dev/sparktestsupport/modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/sparktestsupport/modules.py') diff --git a/dev/sparktestsupport/modules.py b/dev/sparktestsupport/modules.py index 4e04672ad3..e4f2edaf95 100644 --- a/dev/sparktestsupport/modules.py +++ b/dev/sparktestsupport/modules.py @@ -477,7 +477,7 @@ yarn = Module( ], sbt_test_goals=[ "yarn/test", - "common/network-yarn/test", + "network-yarn/test", ], test_tags=[ "org.apache.spark.tags.ExtendedYarnTest" -- cgit v1.2.3