Skip to content

Commit

Permalink
Remove interactive flag from Docker command in test workflow
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dvershinin committed Jul 11, 2024
1 parent 2b59198 commit 0aee6f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-firewalld.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 0aee6f8

Please sign in to comment.