Skip to content

Commit 81eb758

Browse files
committed
Don't ansible-lint on Python 3.8
1 parent c59c771 commit 81eb758

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis/build_and_test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ git config --global --add safe.directory /root/ansible_collections/ibm/ibm_zos_c
66

77
pip install -r /root/ansible_collections/ibm/ibm_zos_cics/dev-requirements.txt
88

9-
# ansible-lint requires python >= 3.8
10-
if [ "$TRAVIS_PYTHON_VERSION" != "2.7" ]; then
9+
# ansible-lint requires python >= 3.9
10+
if [ "$TRAVIS_PYTHON_VERSION" != "2.7" ] && [ "$TRAVIS_PYTHON_VERSION" != "3.8" ]; then
1111
echo ""
1212
echo "##########################################################"
1313
echo "###################### Ansible-lint ######################"

0 commit comments

Comments
 (0)