really skip if no boto3

makes no sense to check/skip after you already fail to import
This commit is contained in:
Brian Coca 2018-10-22 17:17:36 -04:00
parent b697da39c8
commit 581b6aed2e

View file

@ -1,13 +1,13 @@
import boto3
import pytest
from units.modules.utils import set_module_args
from ansible.module_utils.ec2 import HAS_BOTO3
from ansible.modules.cloud.amazon import iam_password_policy
if not HAS_BOTO3:
pytestmark = pytest.mark.skip("iam_password_policy.py requires the `boto3` and `botocore` modules")
else:
import boto3
from ansible.modules.cloud.amazon import iam_password_policy
def test_warn_if_state_not_specified():
set_module_args({