chore: add -short flag to test command in Dockerfile

This commit is contained in:
2026-02-14 00:12:56 -05:00
parent 8e054bd149
commit aaa367cb33
+1 -1
View File
@@ -59,7 +59,7 @@ ENV RATE_LIMIT_ENABLED=false
ENV REQUESTS_PER_MINUTE=1000
# Default command for running tests
CMD ["go", "test", "./cmd/server/tests", "-v", "-timeout", "5m", "-parallel=1"]
CMD ["go", "test", "./cmd/server/tests", "-v", "-timeout", "5m", "-parallel=1", "-short"]
# Final stage
FROM alpine:latest