From 0aee6f82fa747919c56cd6f6b2b790f26e30225c Mon Sep 17 00:00:00 2001 From: Danila Vershinin Date: Fri, 12 Jul 2024 00:52:01 +0500 Subject: [PATCH] Remove interactive flag from Docker command in test workflow The change removes the '-it' (interactive) flag from the Docker command used in the GitHub firewalld test workflow. This modification ensures the tests run in an automated, non-interactive manner, suitable for a continuous integration environment. --- .github/workflows/test-firewalld.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-firewalld.yml b/.github/workflows/test-firewalld.yml index aaa23d0..8f34ac1 100644 --- a/.github/workflows/test-firewalld.yml +++ b/.github/workflows/test-firewalld.yml @@ -29,4 +29,4 @@ jobs: sleep 10 # Run tests inside the container - docker exec -it firewalld-container /bin/bash -c "./firewalld-tests.sh" + docker exec firewalld-container /bin/bash -c "./firewalld-tests.sh"