Browse code

docker-py: run without tty to disable color output

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit b04cbf10722ec3de5b6ab4b822c6b271e0fd10c8)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2019/08/11 03:25:53
Showing 1 changed files
... ...
@@ -57,7 +57,7 @@ source hack/make/.integration-test-helpers
57 57
 	(
58 58
 		[ -n "${TESTDEBUG}" ] && set -x
59 59
 		# shellcheck disable=SC2086
60
-		exec docker run -t --rm ${run_opts} "${docker_py_image}" pytest ${PY_TEST_OPTIONS} tests/integration
60
+		exec docker run --rm ${run_opts} "${docker_py_image}" pytest ${PY_TEST_OPTIONS} tests/integration
61 61
 	)
62 62
 	bundle .integration-daemon-stop
63 63
 ) 2>&1 | tee -a "$DEST/test.log"