Skip to content

Commit 6bb0be6

Browse files
committed
ci: Do not use podman's --tty and --interactive options
Those options are not useful when running CI and only raise warnings.
1 parent bda45df commit 6bb0be6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ubuntu_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
podman build --tag alpine-ci -f ./test/containers/Containerfile-alpine .
7171
- name: Test unlimited API
7272
run: |
73-
podman run --rm -it alpine-ci
73+
podman run --rm alpine-ci
7474
- name: Test limited API
7575
run: |
76-
podman run --env PYTHON_SDBUS_USE_LIMITED_API=1 --rm -it alpine-ci
76+
podman run --env PYTHON_SDBUS_USE_LIMITED_API=1 --rm alpine-ci

0 commit comments

Comments
 (0)