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

@ -14,6 +14,7 @@ from api.tests.unit.test_unit_common_viewset import ModelViewSetInheritedCases
@pytest.mark.skip(reason = 'see #895, tests being refactored')
@pytest.mark.model_entity
class ViewsetTestCases(
ModelViewSetInheritedCases,

View File

@ -11,6 +11,7 @@ from api.tests.unit.test_unit_common_viewset import ModelViewSetInheritedCases
@pytest.mark.skip(reason = 'see #895, tests being refactored')
@pytest.mark.model_role
class ViewsetTestCases(
ModelViewSetInheritedCases,

View File

@ -1,3 +1,5 @@
import pytest
from django.test import Client, TestCase
from rest_framework.reverse import reverse
@ -9,6 +11,7 @@ from api.tests.unit.test_unit_common_viewset import ModelViewSetInheritedCases
@pytest.mark.skip(reason = 'see #895, tests being refactored')
class TeamViewsetList(
ModelViewSetInheritedCases,
TestCase,

View File

@ -1,3 +1,5 @@
import pytest
from django.test import Client, TestCase
from rest_framework.reverse import reverse
@ -9,6 +11,7 @@ from api.tests.unit.test_unit_common_viewset import ModelViewSetInheritedCases
@pytest.mark.skip(reason = 'see #895, tests being refactored')
class TeamUserViewsetList(
ModelViewSetInheritedCases,
TestCase,

View File

@ -10,6 +10,7 @@ from api.tests.unit.test_unit_common_viewset import ModelViewSetInheritedCases
@pytest.mark.skip(reason = 'see #895, tests being refactored')
class OrganizationViewsetList(
ModelViewSetInheritedCases,
TestCase,

View File

@ -1,3 +1,5 @@
import pytest
from django.shortcuts import reverse
from django.test import Client, TestCase
@ -7,6 +9,7 @@ from access.viewsets.index import Index
@pytest.mark.skip(reason = 'see #895, tests being refactored')
class AccessViewset(
IndexViewsetInheritedCases,
TestCase,