Skip to content

Commit

Permalink
Fix bad test again
Browse files Browse the repository at this point in the history
  • Loading branch information
dpguthrie committed Apr 6, 2024
1 parent 2eca633 commit ba898ea
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,23 +85,27 @@ def test_get_project():
@pytest.mark.dependency(depends=["test_list_projects"])
def test_list_environments_old():
_test_cloud_cli(
"list-environments",
"--account-id",
ACCOUNT_ID,
"--project-id",
PROJECT_ID,
[
"list-environments",
"--account-id",
ACCOUNT_ID,
"--project-id",
PROJECT_ID,
],
)


@pytest.mark.dependency(depends=["test_list_projects"])
def test_list_environments():
_test_cloud_cli(
"environments",
"list",
"--account-id",
ACCOUNT_ID,
"--project-id",
PROJECT_ID,
[
"environments",
"list",
"--account-id",
ACCOUNT_ID,
"--project-id",
PROJECT_ID,
],
)


Expand Down

0 comments on commit ba898ea

Please sign in to comment.