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

@ -14,7 +14,6 @@ User = django.contrib.auth.get_user_model()
@pytest.mark.skip( reason = 'to be refactored' )
class OrganizationValidationAPI(
TestCase,
):

View File

@ -22,7 +22,6 @@ User = django.contrib.auth.get_user_model()
@pytest.mark.skip( reason = 'to be refactored' )
class ViewSetBase:
model = Organization

View File

@ -22,7 +22,6 @@ class ModelTestCases(
}
@pytest.mark.skip( reason = 'refactor')
class TeamModelTest(
ModelTestCases,
TestCase,

View File

@ -21,7 +21,6 @@ User = django.contrib.auth.get_user_model()
@pytest.mark.skip( reason = 'to be refactored' )
class OrganizationAPI(
TestCase,
APICommonFields

View File

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