refactor(tests): Unskip tests that'll work now due to model inheritance change

ref: #871 #771 #395 #859
This commit is contained in:
2025-07-20 12:34:15 +09:30
parent a382561245
commit de87364b9c
17 changed files with 3 additions and 17 deletions

View File

@ -15,7 +15,6 @@ from devops.models.check_ins import CheckIn
@pytest.mark.skip( reason = "Audit history requires context['user']")
class Checkin(
TestCase,
):

View File

@ -12,7 +12,7 @@ from devops.serializers.public_feature_flag import FeatureFlag, ViewSerializer
from itam.models.software import Software
@pytest.mark.skip( reason = "Audit history requires context['user']")
class Serializer(
TestCase,
):

View File

@ -16,7 +16,6 @@ from itam.models.software import Software
@pytest.mark.skip( reason = "Audit history requires context['user']")
class ViewSetBase:
model = FeatureFlag

View File

@ -14,7 +14,7 @@ from devops.models.software_enable_feature_flag import SoftwareEnableFeatureFlag
from itam.models.software import Software
@pytest.mark.skip( reason = "Audit history requires context['user']")
class API(
TestCase,
):

View File

@ -11,7 +11,7 @@ from devops.viewsets.public_feature_flag import ViewSet
from itam.models.software import Software
@pytest.mark.skip( reason = "Audit history requires context['user']")
class ViewsetList(
PublicReadOnlyViewSetInheritedCases,
TestCase,