diff options
author | Matt Clay <matt@mystile.com> | 2016-09-02 23:14:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-02 23:14:44 -0700 |
commit | 7cd988f60cce0aed24654b8b3e69110487a643ff (patch) | |
tree | bb175c3d71a3c5e5e2c085408b1704ebc5873b0b /test/integration/Makefile | |
parent | f7b22a5eaa388bc05e97fb649b2bf4f79c463a67 (diff) | |
download | ansible-7cd988f60cce0aed24654b8b3e69110487a643ff.tar.gz |
Enable more integration tests for python 3. (#17375)
The test_async test target was updated to accommodate changes in
output buffering behavior in python 3. This change in behavior
may need to be addressed in the future.
Diffstat (limited to 'test/integration/Makefile')
-rw-r--r-- | test/integration/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/Makefile b/test/integration/Makefile index 99fc56a164..b735331037 100644 --- a/test/integration/Makefile +++ b/test/integration/Makefile @@ -348,4 +348,4 @@ test_async: ANSIBLE_DEBUG=0 LC_ALL=bogus ansible-playbook test_async.yml -i localhost, -e ansible_connection=ssh -v $(TEST_FLAGS) # Verify that the warning exists by examining debug output. ANSIBLE_DEBUG=1 LC_ALL=bogus ansible-playbook test_async.yml -i localhost, -e ansible_connection=ssh -v $(TEST_FLAGS) \ - | grep -q 'bash: warning: setlocale: LC_ALL: cannot change locale (bogus)' + | grep 'bash: warning: setlocale: LC_ALL: cannot change locale (bogus)' > /dev/null |