Skip to content

Commit 140d347

Browse files
committed
add additional mypy check to lint script
1 parent 86ef417 commit 140d347

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,6 @@ jobs:
8282
- name: Lint
8383
if: matrix.pydantic-version == 'pydantic-v2' && matrix.python-version != '3.8'
8484
run: bash scripts/lint.sh
85-
- name: Extra Mypy check
86-
if: matrix.python-version == '3.13'
87-
run: mypy tests/test_select_typing.py
8885
- run: mkdir coverage
8986
- name: Test
9087
run: bash scripts/test.sh

scripts/lint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ set -e
44
set -x
55

66
mypy sqlmodel
7+
mypy tests/test_select_typing.py
78
ruff check sqlmodel tests docs_src scripts
89
ruff format sqlmodel tests docs_src scripts --check

0 commit comments

Comments
 (0)