tests: add sanity tests for python 2.7

Automation Hub still runs sanity tests on python 2.7

updating release to 1.1.1 to publish a new version.
This commit is contained in:
Yusuke Tsutsumi 2022-12-16 16:34:31 +00:00 committed by Yusuke Tsutsumi
parent cbae062c98
commit 509e0207ff
6 changed files with 34 additions and 7 deletions

View file

@ -21,11 +21,20 @@ jobs:
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: ${{ env.PYTHON_VERSION }} python-version: ${{ env.PYTHON_VERSION }}
# Automation-hub requires python2.7 sanity tests
- name: setup python2.7
run: |
sudo apt-add-repository universe
sudo apt update
sudo apt install python2.7
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
sudo /usr/bin/python2.7 get-pip.py
pip2 install virtualenv
- name: Install ansible-base (${{ matrix.ansible_version }}) - name: Install ansible-base (${{ matrix.ansible_version }})
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check
- name: Run ansible-test sanity - name: Run ansible-test sanity
# validate-modules cannot be turned on until #498 is resolved. # validate-modules cannot be turned on until #498 is resolved.
run: ansible-test sanity -v --color --python "$PYTHON_VERSION" --skip validate-modules run: ansible-test sanity -v --color --skip validate-modules
- name: Install ansible-lint - name: Install ansible-lint
run: pip install ansible-lint run: pip install ansible-lint
- name: Run ansible-lint - name: Run ansible-lint
@ -48,7 +57,7 @@ jobs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: ${{ env.PYTHON_VERSION }} python-version: "${{ env.PYTHON_VERSION }}"
- name: Install dependencies - name: Install dependencies
run: pip install -r requirements.txt run: pip install -r requirements.txt
- name: Install test dependencies - name: Install test dependencies

View file

@ -5,6 +5,14 @@ Google.Cloud Release Notes
.. contents:: Topics .. contents:: Topics
v1.1.1
======
Bugfixes
--------
- fix collection to work with Python 2.7
v1.1.0 v1.1.0
====== ======
@ -23,5 +31,6 @@ Bugfixes
- gcp_container_cluster - support GKE clusters greater than 1.19+, which cannot use basic-auth. - gcp_container_cluster - support GKE clusters greater than 1.19+, which cannot use basic-auth.
- gcp_crypto_key - skip_initial_version_creation defaults to the correct value. - gcp_crypto_key - skip_initial_version_creation defaults to the correct value.
- gcp_iam_role - now properly undeletes and recognizes soft deleted roles as absent. - gcp_iam_role - now properly undeletes and recognizes soft deleted roles as absent.
- gcp_iam_role - update of a role is functional (GitHub
- gcp_spanner_database - recognize a non-existent resource as absent. - gcp_spanner_database - recognize a non-existent resource as absent.
- gcp_storage_object - fix for correct version of dependency requirement. - gcp_storage_object - fix for correct version of dependency requirement.

View file

@ -6,6 +6,7 @@ plugins:
callback: {} callback: {}
cliconf: {} cliconf: {}
connection: {} connection: {}
filter: {}
httpapi: {} httpapi: {}
inventory: inventory:
gcp_compute: gcp_compute:
@ -867,5 +868,6 @@ plugins:
netconf: {} netconf: {}
shell: {} shell: {}
strategy: {} strategy: {}
test: {}
vars: {} vars: {}
version: 1.1.0-beta.0 version: 1.1.1

View file

@ -14,9 +14,9 @@ releases:
- gcp_crypto_key - skip_initial_version_creation defaults to the correct value. - gcp_crypto_key - skip_initial_version_creation defaults to the correct value.
- gcp_iam_role - now properly undeletes and recognizes soft deleted roles as - gcp_iam_role - now properly undeletes and recognizes soft deleted roles as
absent. absent.
- gcp_iam_role - update of a role is functional (GitHub
- gcp_spanner_database - recognize a non-existent resource as absent. - gcp_spanner_database - recognize a non-existent resource as absent.
- gcp_storage_object - fix for correct version of dependency requirement. - gcp_storage_object - fix for correct version of dependency requirement.
- gcp_iam_role - update of a role is functional (GitHub #236).
minor_changes: minor_changes:
- GCE inventory plugin - a new option ``name_suffix``, to add a suffix to the - GCE inventory plugin - a new option ``name_suffix``, to add a suffix to the
name parameter. name parameter.
@ -24,3 +24,10 @@ releases:
- 0001_disk.yml - 0001_disk.yml
- bugfixes.yaml - bugfixes.yaml
release_date: '2022-12-16' release_date: '2022-12-16'
1.1.1:
changes:
bugfixes:
- fix collection to work with Python 2.7
fragments:
- fix-2.7.yml
release_date: '2022-12-16'

View file

@ -9,7 +9,7 @@ namespace: google
name: cloud name: cloud
# The version of the collection. Must be compatible with semantic versioning # The version of the collection. Must be compatible with semantic versioning
version: "1.1.0" version: "1.1.1"
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection # The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md readme: README.md

View file

@ -112,7 +112,7 @@ class GcpSession(object):
This method should be avoided in favor of full_put This method should be avoided in favor of full_put
""" """
kwargs = {'json': body} kwargs = {'json': body}
return self.full_put(url, **kwargs, params=params) return self.full_put(url, params=params, **kwargs)
def patch(self, url, body=None, **kwargs): def patch(self, url, body=None, **kwargs):
""" """