Skip to content

Commit

Permalink
improve
Browse files Browse the repository at this point in the history
  • Loading branch information
xunliu committed Sep 24, 2024
1 parent 52acf88 commit a68418a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
needs: changes
if: needs.changes.outputs.source_changes == 'true'
runs-on: ubuntu-latest
timeout-minutes: 45
timeout-minutes: 30
strategy:
matrix:
# Integration test for AMD64 architecture
Expand Down
1 change: 1 addition & 0 deletions LICENSE.bin
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@
Apache Arrow
Rome
Jettison
API Guardian

This product bundles various third-party components also under the
Apache Software Foundation License 1.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public static void startIntegrationTest() throws Exception {
sparkSession =
SparkSession.builder()
.master("local[1]")
.appName("Hive Catalog integration test")
.appName("Ranger Hive E2E integration test")
.config("hive.metastore.uris", HIVE_METASTORE_URIS)
.config(
"spark.sql.warehouse.dir",
Expand Down
3 changes: 1 addition & 2 deletions integration-test-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ dependencies {
exclude("com.amazonaws", "aws-java-sdk-bundle")
}
testImplementation(libs.apiguardian.api)
testImplementation(libs.bundles.jersey)
testImplementation(libs.junit.jupiter.api)
testImplementation(libs.junit.jupiter.engine)
testImplementation(libs.junit.jupiter.params)
testImplementation(libs.bundles.jersey)
}

val testShadowJar by tasks.registering(ShadowJar::class) {
Expand All @@ -79,7 +79,6 @@ val testShadowJar by tasks.registering(ShadowJar::class) {
archiveClassifier.set("tests-shadow")
// avoid conflict with Spark test
exclude("org/apache/logging/slf4j/**")
// exclude("com/fasterxml/jackson/**")
relocate("org.eclipse.jetty", "org.apache.gravitino.it.shaded.org.eclipse.jetty")
from(sourceSets["test"].output)
}
Expand Down

0 comments on commit a68418a

Please sign in to comment.