Skip to content

Commit 9cd0831

Browse files
authored
Merge pull request #27 from eadwinCode/modelcontroller
Feat: ModelController
2 parents 36e08b0 + f2f2923 commit 9cd0831

File tree

22 files changed

+2408
-122
lines changed

22 files changed

+2408
-122
lines changed

.coveragerc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ exclude_lines =
55
def __str__
66
if self.debug:
77
if settings.DEBUG
8+
if t.TYPE_CHECKING:
89
raise AssertionError
910
raise NotImplementedError
1011
if 0:
1112
if __name__ == .__main__.:
1213
class .*\bProtocol\):
13-
@(abc\.)?abstractmethod
14+
@(abc\.)?abstractmethod

.github/workflows/test_full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
14+
python-version: ['3.8', '3.9', '3.10', '3.11']
1515
django-version: ['<3.0', '<3.1', '<3.2', '<3.3', '<4.1', '<4.2']
1616

1717
steps:
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install core
2424
run: pip install "Django${{ matrix.django-version }}" pydantic
2525
- name: Install tests
26-
run: pip install pytest pytest-asyncio pytest-django injector>=0.19.0 django-ninja asgiref contextlib2
26+
run: pip install pytest pytest-asyncio pytest-django injector>=0.19.0 django-ninja asgiref contextlib2 ninja-schema>=0.13.4
2727
- name: Test
2828
run: pytest
2929
codestyle:

0 commit comments

Comments
 (0)