Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SogoKato committed Apr 2, 2024
1 parent e11e85d commit ca033f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions tests/integration/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ def test_cli_help(self):
"ess",
"storage",
"service-activity",
"devops",
"devops-runner",
]
for service in available_services:
assert service in res
2 changes: 1 addition & 1 deletion tests/integration/test_devops.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

class TestDevOps:
def test_devops_list_instances(self):
res = nifcloud("devops list-instances")
res = nifcloud("--region jp-west-1 devops list-instances")
assert len(res["Instances"]) == 0
2 changes: 1 addition & 1 deletion tests/integration/test_devops_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

class TestDevOpsRunner:
def test_devops_list_runners(self):
res = nifcloud("devops-runner list-runners")
res = nifcloud("--region jp-west-1 devops-runner list-runners")
assert len(res["Runners"]) == 0

0 comments on commit ca033f3

Please sign in to comment.