diff --git a/noxfile.py b/noxfile.py index d2d1b7ba..27898dce 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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}",