Skip to content

Commit f7b2adc

Browse files
authored
don't run mypy with nox (#329)
* don't run mypy with nox * mypy
1 parent 65914c8 commit f7b2adc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
include:
1515
- { python: "3.10", os: "ubuntu-latest", session: "pre-commit" }
1616
- { python: "3.10", os: "ubuntu-latest", session: "safety" }
17-
- { python: "3.10", os: "ubuntu-latest", session: "mypy" }
17+
# - { python: "3.10", os: "ubuntu-latest", session: "mypy" }
1818
- { python: "3.10", os: "ubuntu-latest", session: "tests" }
1919
# - { python: "3.10", os: "windows-latest", session: "tests" }
2020
# - { python: "3.10", os: "macos-latest", session: "tests" }

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
nox.options.sessions = (
2929
"pre-commit",
3030
"safety",
31-
"mypy",
31+
# "mypy",
3232
"tests",
3333
"typeguard",
3434
"xdoctest",

0 commit comments

Comments
 (0)