Skip to content

Commit

Permalink
Add check keyword arg to subprocess run
Browse files Browse the repository at this point in the history
  • Loading branch information
JimMadge committed Apr 26, 2024
1 parent f74e45e commit 5496d01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5496d01

Please sign in to comment.