some fixes

This commit is contained in:
Alex Stephen 2020-07-28 18:28:55 -07:00
parent e82e639e41
commit 11e5da0e3a
7 changed files with 19 additions and 4 deletions

View file

@ -1,3 +0,0 @@
```release-note:REPLACEME
```

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: 0.10.2 version: 0.10.3
# 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

@ -1,3 +1,7 @@
__metaclass__ = type
from __future__ import (absolute_import, division, print_function)
import os import os
import testinfra.utils.ansible_runner import testinfra.utils.ansible_runner

View file

@ -1,3 +1,7 @@
__metaclass__ = type
from __future__ import (absolute_import, division, print_function)
import os import os
import testinfra.utils.ansible_runner import testinfra.utils.ansible_runner

View file

@ -1,3 +1,7 @@
__metaclass__ = type
from __future__ import (absolute_import, division, print_function)
import os import os
import testinfra.utils.ansible_runner import testinfra.utils.ansible_runner

View file

@ -1,3 +1,6 @@
__metaclass__ = type
from __future__ import (absolute_import, division, print_function)
import os import os
import testinfra.utils.ansible_runner import testinfra.utils.ansible_runner

View file

@ -15,6 +15,9 @@
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
from __future__ import (absolute_import, division, print_function)
from ansible_collections.community.general.tests.unit.compat import unittest from ansible_collections.community.general.tests.unit.compat import unittest
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (GcpRequest, from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import (GcpRequest,
navigate_hash, navigate_hash,