diff --git a/docker-compose.yaml b/docker-compose.yaml
index 514adb3..c75d251 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -20,4 +20,8 @@ services:
         source: ./
         target: /workspace
     working_dir: /workspace
-    command: ["go", "test", "-count=1", "-v", "./driver/..."]
\ No newline at end of file
+    command: >
+        bash -c "
+            go install gotest.tools/gotestsum@latest &&
+            gotestsum -- -coverprofile=coverage.txt -timeout=10s -v -count=1 -coverpkg=./... -covermode=atomic ./driver/...
+        "
\ No newline at end of file