diff --git a/tests/conftest.py b/tests/conftest.py index 4918f4c5d3..dbe41751b2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -21,9 +21,9 @@ @fixture(autouse=True, scope="session") def local_pulumi_login(): pulumi_path = which("pulumi") - run([pulumi_path, "login", "--local"]) + run([pulumi_path, "login", "--local"], check=False) yield - run([pulumi_path, "logout"]) + run([pulumi_path, "logout"], check=False) @fixture