chore(api): mark ALL ViewSet Unit Test Suites to skip

Viewset tests being refactored

ref: #893 #876 #895
This commit is contained in:
2025-07-26 08:07:25 +09:30
parent 4b7549b87b
commit c252717bb7
61 changed files with 99 additions and 0 deletions

View File

@ -8,6 +8,7 @@ from devops.viewsets.feature_flag import ViewSet
@pytest.mark.skip(reason = 'see #895, tests being refactored')
class ViewsetList(
ModelViewSetInheritedCases,
TestCase,

View File

@ -12,6 +12,7 @@ from itam.models.software import Software
@pytest.mark.skip(reason = 'see #895, tests being refactored')
class ViewsetList(
PublicReadOnlyViewSetInheritedCases,
TestCase,

View File

@ -1,3 +1,5 @@
import pytest
from django.test import Client, TestCase
from rest_framework.reverse import reverse
@ -10,6 +12,7 @@ from itam.models.software import Software
@pytest.mark.skip(reason = 'see #895, tests being refactored')
class ViewsetList(
ModelViewSetInheritedCases,
TestCase,