refactor(core): Move CenturionModel logic to Mixin

ref: #805 #767
This commit is contained in:
2025-06-08 12:35:13 +09:30
parent 7ad1851cc0
commit dbdfe4e6c0
12 changed files with 1560 additions and 1327 deletions

View File

@ -279,6 +279,15 @@ def pytest_generate_tests(metafunc):
)
else:
pytest.mark.xfail(
reason = 'No Parameters for parameterized test'
)(
getattr(metafunc.cls, metafunc.definition.name)
)
@pytest.fixture( scope = 'class')
def create_model(request, django_db_blocker):