Skip to content

Commit

Permalink
Split SQL tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HyukjinKwon committed Jul 11, 2020
1 parent 28bd0fc commit f8ee706
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ jobs:
core, unsafe, kvstore, avro,
network_common, network_shuffle, repl, launcher
examples, sketch, graphx
- |-
sql
- |-
catalyst, hive-thriftserver
- |-
Expand All @@ -42,11 +40,12 @@ jobs:
pyspark-core, pyspark-streaming, pyspark-ml
- |-
sparkr
# Here, we split Hive tests into some of slow ones and the rest of them.
# Here, we split Hive and SQL tests into some of slow ones and the rest of them.
included-tags: [""]
excluded-tags: [""]
comment: [""]
include:
# Hive tests
- modules: hive
java: 1.8
hadoop: hadoop3.2
Expand All @@ -59,6 +58,19 @@ jobs:
hive: hive2.3
excluded-tags: org.apache.spark.tags.SlowHiveTest
comment: "- other tests"
# SQL tests
- modules: sql
java: 1.8
hadoop: hadoop3.2
hive: hive2.3
included-tags: org.apache.spark.tags.ExtendedSQLTest
comment: "- slow tests"
- modules: sql
java: 1.8
hadoop: hadoop3.2
hive: hive2.3
excluded-tags: org.apache.spark.tags.ExtendedSQLTest
comment: "- other tests"
env:
TEST_ONLY_MODULES: ${{ matrix.modules }}
TEST_ONLY_EXCLUDED_TAGS: ${{ matrix.excluded-tags }}
Expand Down

0 comments on commit f8ee706

Please sign in to comment.