summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-test-no-tty/runme.sh
blob: c02793a1236a993bffeaaba5d9fd9de4848c7a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
# Verify that ansible-test runs integration tests without a TTY.

source ../collection/setup.sh

set -x

if ./run-with-pty.py tests/integration/targets/no-tty/assert-no-tty.py > /dev/null; then
  echo "PTY assertion did not fail. Either PTY creation failed or PTY detection is broken."
  exit 1
fi

./run-with-pty.py ansible-test integration --color "${@}"