From f596975bbcd9863c35c56e17808b5868a8950cde Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Tue, 17 Dec 2024 10:25:24 -0500 Subject: [PATCH] feat: Fix test-docker command to not use TTY for CI tests. --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 9e2ed4b..c57be4f 100644 --- a/justfile +++ b/justfile @@ -18,7 +18,7 @@ test *ARGS: alias t := test test-docker *ARGS: (build-docker-test) - @docker run --rm -it \ + @docker run --rm \ --network host \ {{docker_image_name}}:test \ swift test {{ARGS}}