Skip to content

Commit

Permalink
Changes in root test
Browse files Browse the repository at this point in the history
  • Loading branch information
HyukjinKwon authored Jul 13, 2020
1 parent 71e24eb commit ab41b08
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
modules:
- |-
core, unsafe, kvstore, avro,
network_common, network_shuffle, repl, launcher
network-common, network-shuffle, repl, launcher,
examples, sketch, graphx
- |-
catalyst, hive-thriftserver
Expand Down
3 changes: 2 additions & 1 deletion dev/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,14 +662,15 @@ def main():
changed_files = identify_changed_files_from_git_commits(
os.environ["GITHUB_SHA"], target_ref=os.environ["GITHUB_PREV_SHA"])
print("changed_files : %s" % changed_files)

modules_to_test = determine_modules_to_test(
determine_modules_for_files(changed_files), deduplicated=False)
print("modules_to_test : %s" % modules_to_test)

if modules.root not in modules_to_test:
# If root module does not exist, only test the intersected modules.
# If root module is found, just run the modules as specified initially.
test_modules = list(set(modules_to_test).intersection(test_modules))

print("test_modules : %s" % test_modules)

changed_modules = test_modules
Expand Down
2 changes: 1 addition & 1 deletion sql/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@

<!--
This spark-tags test-dep is needed even though it isn't used in this module, otherwise testing-cmds that exclude
them will yield errorts!
them will yield errorts.
-->
<dependency>
<groupId>org.apache.spark</groupId>
Expand Down

0 comments on commit ab41b08

Please sign in to comment.