mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Replace nose with pytest
This commit is contained in:
parent
26a677c2a9
commit
61e5d04a60
6 changed files with 21 additions and 15 deletions
|
@ -23,13 +23,13 @@ try:
|
||||||
except:
|
except:
|
||||||
HAS_BOTO3 = False
|
HAS_BOTO3 = False
|
||||||
|
|
||||||
from nose.plugins.skip import SkipTest
|
import pytest
|
||||||
|
|
||||||
from units.compat import unittest
|
from units.compat import unittest
|
||||||
from ansible.module_utils.ec2 import AWSRetry
|
from ansible.module_utils.ec2 import AWSRetry
|
||||||
|
|
||||||
if not HAS_BOTO3:
|
if not HAS_BOTO3:
|
||||||
raise SkipTest("test_aws.py requires the python modules 'boto3' and 'botocore'")
|
pytestmark = pytest.mark.skip("test_aws.py requires the python modules 'boto3' and 'botocore'")
|
||||||
|
|
||||||
|
|
||||||
class RetryTestCase(unittest.TestCase):
|
class RetryTestCase(unittest.TestCase):
|
||||||
|
|
|
@ -25,7 +25,7 @@ from ansible.module_utils.network.aci.aci import ACIModule
|
||||||
from ansible.module_utils.six import PY2, PY3
|
from ansible.module_utils.six import PY2, PY3
|
||||||
from ansible.module_utils._text import to_native
|
from ansible.module_utils._text import to_native
|
||||||
|
|
||||||
from nose.plugins.skip import SkipTest
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
class AltModule():
|
class AltModule():
|
||||||
|
@ -52,7 +52,7 @@ try:
|
||||||
if sys.version_info >= (2, 7):
|
if sys.version_info >= (2, 7):
|
||||||
from xmljson import cobra
|
from xmljson import cobra
|
||||||
except ImportError:
|
except ImportError:
|
||||||
raise SkipTest("ACI Ansible modules require the lxml and xmljson Python libraries")
|
pytestmark = pytest.mark.skip("ACI Ansible modules require the lxml and xmljson Python libraries")
|
||||||
|
|
||||||
|
|
||||||
class AciRest(unittest.TestCase):
|
class AciRest(unittest.TestCase):
|
||||||
|
|
|
@ -19,19 +19,20 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
from nose.plugins.skip import SkipTest
|
import pytest
|
||||||
|
|
||||||
|
pytestmark = []
|
||||||
try:
|
try:
|
||||||
from ansible.modules.network.fortimanager import fmgr_provisioning
|
from ansible.modules.network.fortimanager import fmgr_provisioning
|
||||||
from .fortimanager_module import TestFortimanagerModule
|
from .fortimanager_module import TestFortimanagerModule
|
||||||
from units.modules.utils import set_module_args
|
from units.modules.utils import set_module_args
|
||||||
except ImportError:
|
except ImportError:
|
||||||
raise SkipTest("Could not load required modules for testing")
|
pytestmark.append(pytest.mark.skip("Could not load required modules for testing"))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from pyFMG.fortimgr import FortiManager
|
from pyFMG.fortimgr import FortiManager
|
||||||
except ImportError:
|
except ImportError:
|
||||||
raise SkipTest("FortiManager tests require pyFMG package")
|
pytestmark.append(pytest.mark.skip("FortiManager tests require pyFMG package"))
|
||||||
|
|
||||||
|
|
||||||
class TestFmgrProvisioningModule(TestFortimanagerModule):
|
class TestFmgrProvisioningModule(TestFortimanagerModule):
|
||||||
|
|
|
@ -19,19 +19,20 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
from nose.plugins.skip import SkipTest
|
import pytest
|
||||||
|
|
||||||
|
pytestmark = []
|
||||||
try:
|
try:
|
||||||
from ansible.modules.network.fortimanager import fmgr_script
|
from ansible.modules.network.fortimanager import fmgr_script
|
||||||
from .fortimanager_module import TestFortimanagerModule
|
from .fortimanager_module import TestFortimanagerModule
|
||||||
from units.modules.utils import set_module_args
|
from units.modules.utils import set_module_args
|
||||||
except ImportError:
|
except ImportError:
|
||||||
raise SkipTest("Could not load required modules for testing")
|
pytestmark.append(pytest.mark.skip("Could not load required modules for testing"))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from pyFMG.fortimgr import FortiManager
|
from pyFMG.fortimgr import FortiManager
|
||||||
except ImportError:
|
except ImportError:
|
||||||
raise SkipTest("FortiManager tests require pyFMG package")
|
pytestmark.append(pytest.mark.skip("FortiManager tests require pyFMG package"))
|
||||||
|
|
||||||
|
|
||||||
class TestFmgrScriptModule(TestFortimanagerModule):
|
class TestFmgrScriptModule(TestFortimanagerModule):
|
||||||
|
|
|
@ -19,12 +19,13 @@
|
||||||
from units.compat.mock import patch
|
from units.compat.mock import patch
|
||||||
from units.modules.utils import set_module_args as _set_module_args, AnsibleExitJson, AnsibleFailJson, ModuleTestCase
|
from units.modules.utils import set_module_args as _set_module_args, AnsibleExitJson, AnsibleFailJson, ModuleTestCase
|
||||||
|
|
||||||
from nose.plugins.skip import SkipTest
|
import pytest
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from vspk import v5_0 as vsdk
|
from vspk import v5_0 as vsdk
|
||||||
from bambou import nurest_session
|
from bambou import nurest_session
|
||||||
except ImportError:
|
except ImportError:
|
||||||
raise SkipTest('Nuage Ansible modules requires the vspk and bambou python libraries')
|
pytestmark = pytest.mark.skip('Nuage Ansible modules requires the vspk and bambou python libraries')
|
||||||
|
|
||||||
|
|
||||||
def set_module_args(args):
|
def set_module_args(args):
|
||||||
|
|
|
@ -18,16 +18,19 @@
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from nose.plugins.skip import SkipTest
|
import pytest
|
||||||
|
|
||||||
|
pytestmark = []
|
||||||
|
|
||||||
if not(sys.version_info[0] == 2 and sys.version_info[1] >= 7):
|
if not(sys.version_info[0] == 2 and sys.version_info[1] >= 7):
|
||||||
raise SkipTest('Nuage Ansible modules requires Python 2.7')
|
pytestmark.append(pytest.mark.skip('Nuage Ansible modules requires Python 2.7'))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from vspk import v5_0 as vsdk
|
from vspk import v5_0 as vsdk
|
||||||
from bambou.exceptions import BambouHTTPError
|
from bambou.exceptions import BambouHTTPError
|
||||||
from ansible.modules.network.nuage import nuage_vspk
|
from ansible.modules.network.nuage import nuage_vspk
|
||||||
except ImportError:
|
except ImportError:
|
||||||
raise SkipTest('Nuage Ansible modules requires the vspk and bambou python libraries')
|
pytestmark.append(pytest.mark.skip('Nuage Ansible modules requires the vspk and bambou python libraries'))
|
||||||
|
|
||||||
from units.compat.mock import patch
|
from units.compat.mock import patch
|
||||||
from units.modules.utils import set_module_args, AnsibleExitJson, AnsibleFailJson
|
from units.modules.utils import set_module_args, AnsibleExitJson, AnsibleFailJson
|
||||||
|
|
Loading…
Reference in a new issue