Skip to content

Commit

Permalink
Missing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick91 committed Jul 14, 2023
1 parent 64f63f7 commit 9cfc1f7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_pydantic(session: Session, pydantic: str) -> None:

@session(python=PYTHON_VERSIONS, name="Mypy tests")
def tests_mypy(session: Session) -> None:
session.run_always("poetry", "install", external=True)
session.run_always("poetry", "install", "--with", "integrations", external=True)

session.run(
"pytest",
Expand Down Expand Up @@ -151,6 +151,6 @@ def tests_pyright(session: Session) -> None:

@session(name="Mypy", tags=["lint"])
def mypy(session: Session) -> None:
session.run_always("poetry", "install", external=True)
session.run_always("poetry", "install", "--with", "integrations", external=True)

session.run("mypy", "--config-file", "mypy.ini")
13 changes: 12 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ types-ujson = "^5.6.0"
botocore = "1.29.124"
mypy = "1.3.0"
pytest-mypy-plugins = "^1.10"
types-protobuf = "^4.23.0.1"

[tool.poetry.group.integrations]
optional = true
Expand Down

0 comments on commit 9cfc1f7

Please sign in to comment.