diff --git a/.github/workflows/ansible-integration-tests.yml b/.github/workflows/ansible-integration-tests.yml index 990354e..8ff37f8 100644 --- a/.github/workflows/ansible-integration-tests.yml +++ b/.github/workflows/ansible-integration-tests.yml @@ -25,6 +25,7 @@ jobs: # and test against the minimum version of Python supported by both. If/when we change # the integration tests to support parallelism we can revisit. ansible_version: + - stable-2.16 - stable-2.17 - stable-2.18 steps: @@ -35,7 +36,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' # this is the minimum version required for Ansible 2.17 + python-version: '3.10' # this is the minimum version required for Ansible 2.16 - name: Install dependencies run: pip install -r requirements.txt - name: Install ansible-base (${{ matrix.ansible_version }}) @@ -70,4 +71,4 @@ jobs: # run tests - name: Run integration tests # Add the -vvv flag to print out more output - run: ansible-test integration -v --color --python 3.11 --venv-system-site-packages + run: ansible-test integration -v --color --python 3.10 --venv-system-site-packages