From 29601543ff6500ef9be26c8e92a9eaa36f0d0659 Mon Sep 17 00:00:00 2001 From: chrislu Date: Tue, 18 Nov 2025 18:09:22 -0800 Subject: [PATCH] Update Makefile --- test/s3/parquet/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/s3/parquet/Makefile b/test/s3/parquet/Makefile index 695390a1c..b166c7dda 100644 --- a/test/s3/parquet/Makefile +++ b/test/s3/parquet/Makefile @@ -29,7 +29,7 @@ GREEN := \033[0;32m YELLOW := \033[1;33m NC := \033[0m # No Color -.PHONY: all test clean start-seaweedfs stop-seaweedfs stop-seaweedfs-safe check-binary build-weed help test-with-server test-quick-with-server start-seaweedfs-ci setup-python check-python +.PHONY: all build-weed check-binary check-python ci-test clean debug-logs debug-status help manual-start manual-stop setup-python start-seaweedfs start-seaweedfs-ci stop-seaweedfs stop-seaweedfs-safe test test-implicit-dir test-implicit-dir-with-server test-quick test-with-server all: test @@ -283,13 +283,13 @@ test: setup-python # Run quick tests with small files only test-quick: setup-python - @echo "$(YELLOW)Running quick Parquet tests...$(NC)" + @echo "$(YELLOW)Running quick Parquet tests (small files only)...$(NC)" @echo "$(YELLOW)Assuming SeaweedFS is already running on localhost:$(S3_PORT)$(NC)" - @# For quick tests, we can modify the test script or create a separate quick version @S3_ENDPOINT_URL=http://localhost:$(S3_PORT) \ S3_ACCESS_KEY=$(ACCESS_KEY) \ S3_SECRET_KEY=$(SECRET_KEY) \ BUCKET_NAME=$(BUCKET_NAME) \ + TEST_QUICK=1 \ $(VENV_DIR)/bin/$(PYTHON) $(PYTHON_TEST_SCRIPT) # Test implicit directory fix for s3fs compatibility