TE-2524 Stop using nose.plugins - openedx

This commit is contained in:
Jeremy Bowman
2018-08-02 14:54:44 -04:00
parent 39ccbe3c89
commit c290bf8a07
66 changed files with 114 additions and 158 deletions

View File

@@ -1,7 +1,6 @@
"""Tests for models supporting Credentials-related functionality."""
from django.test import TestCase, override_settings
from nose.plugins.attrib import attr
from openedx.core.djangoapps.credentials.models import API_VERSION
from openedx.core.djangoapps.credentials.tests.mixins import CredentialsApiConfigMixin
@@ -12,9 +11,9 @@ CREDENTIALS_PUBLIC_SERVICE_URL = 'https://credentials.example.com'
@skip_unless_lms
@attr(shard=2)
class TestCredentialsApiConfig(CredentialsApiConfigMixin, TestCase):
"""Tests covering the CredentialsApiConfig model."""
shard = 2
@override_settings(
CREDENTIALS_INTERNAL_SERVICE_URL=CREDENTIALS_INTERNAL_SERVICE_URL,

View File

@@ -3,7 +3,6 @@ import uuid
from edx_oauth2_provider.tests.factories import ClientFactory
import mock
from nose.plugins.attrib import attr
from provider.constants import CONFIDENTIAL
from openedx.core.djangoapps.credentials.models import CredentialsApiConfig
@@ -18,10 +17,10 @@ UTILS_MODULE = 'openedx.core.djangoapps.credentials.utils'
@skip_unless_lms
@attr(shard=2)
@mock.patch(UTILS_MODULE + '.get_edx_api_data')
class TestGetCredentials(CredentialsApiConfigMixin, CacheIsolationTestCase):
""" Tests for credentials utility functions. """
shard = 2
ENABLED_CACHES = ['default']