Skip to content

Commit d8d0f81

Browse files
Client: fix integration testing (#2700)
1 parent bd94b25 commit d8d0f81

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

.github/workflows/python-client.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,6 @@ jobs:
7272
run: |
7373
make client-unit-test
7474
75-
- name: Image build
76-
env:
77-
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
78-
run: |
79-
./gradlew \
80-
:polaris-server:assemble \
81-
:polaris-server:quarkusAppPartsBuild --rerun \
82-
-Dquarkus.container-image.build=true
83-
8475
- name: Integration Tests
8576
run: |
8677
make client-integration-test

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ client-unit-test: client-setup-env ## Run client unit tests
144144
@echo "--- Client unit tests complete ---"
145145

146146
.PHONY: client-integration-test
147-
client-integration-test: client-setup-env ## Run client integration tests
147+
client-integration-test: build-server client-setup-env ## Run client integration tests
148148
@echo "--- Starting client integration tests ---"
149149
@echo "Ensuring Docker Compose services are stopped and removed..."
150150
@$(DOCKER) compose -f $(PYTHON_CLIENT_DIR)/docker-compose.yml kill || true # `|| true` prevents make from failing if containers don't exist

runtime/server/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ tasks.named<QuarkusRun>("quarkusRun") {
8282
"-Dpolaris.features.\"ALLOW_INSECURE_STORAGE_TYPES\"=true",
8383
"-Dpolaris.features.\"SUPPORTED_CATALOG_STORAGE_TYPES\"=[\"FILE\",\"S3\",\"GCS\",\"AZURE\"]",
8484
"-Dpolaris.readiness.ignore-severe-issues=true",
85+
"-Dpolaris.features.\"DROP_WITH_PURGE_ENABLED\"=true",
8586
)
8687
}
8788

0 commit comments

Comments
 (0)