Browse Source

Fix tagging test pattern to run our comprehensive tests instead of basic tests

pull/7594/head
Chris Lu 2 days ago
parent
commit
208d008fe3
  1. 4
      test/s3/tagging/Makefile

4
test/s3/tagging/Makefile

@ -10,7 +10,7 @@ MASTER_PORT := 9338
VOLUME_PORT := 8085 VOLUME_PORT := 8085
FILER_PORT := 8893 FILER_PORT := 8893
TEST_TIMEOUT := 10m TEST_TIMEOUT := 10m
TEST_PATTERN := TestObjectTagging
TEST_PATTERN := TestObjectTaggingOnUpload|TestPutObjectTaggingAPI|TestDeleteObjectTagging|TestTag
# Default target # Default target
help: help:
@ -200,7 +200,7 @@ test-tagging: check-deps
# Comprehensive tagging tests (all features) # Comprehensive tagging tests (all features)
test-tagging-comprehensive: check-deps test-tagging-comprehensive: check-deps
@echo "Running comprehensive tagging tests..." @echo "Running comprehensive tagging tests..."
@go test -v -timeout=$(TEST_TIMEOUT) -run "TestObjectTagging" .
@go test -v -timeout=$(TEST_TIMEOUT) .
@echo "✅ Comprehensive tagging tests completed" @echo "✅ Comprehensive tagging tests completed"
# All tests without server management # All tests without server management

Loading…
Cancel
Save