mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
some fixes
This commit is contained in:
parent
e82e639e41
commit
11e5da0e3a
7 changed files with 19 additions and 4 deletions
|
@ -1,3 +0,0 @@
|
||||||
```release-note:REPLACEME
|
|
||||||
|
|
||||||
```
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue