Skip to content

Commit

Permalink
tests: add missing integrations-base test to noxfile
Browse files Browse the repository at this point in the history
  • Loading branch information
chirizxc committed Jan 8, 2025
1 parent 9e58ed7 commit 1c3747b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,15 @@ def get_tests(self) -> str:
]


@nox.session(tags=["integrations-base"])
def integrations_base(session: nox.Session) -> None:
session.install(
*INSTALL_CMD,
"-r", "requirements/test.txt",
)
session.run(*CMD, "tests/integrations/base")


for env in INTEGRATIONS:
@nox.session(
name=f"{env.library}_{env.version}",
Expand Down

0 comments on commit 1c3747b

Please sign in to comment.