diff --git a/tests/integration/test_cli.py b/tests/integration/test_cli.py index 692729b..f0f3235 100644 --- a/tests/integration/test_cli.py +++ b/tests/integration/test_cli.py @@ -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 diff --git a/tests/integration/test_devops.py b/tests/integration/test_devops.py index 28bf5bd..d9753a8 100644 --- a/tests/integration/test_devops.py +++ b/tests/integration/test_devops.py @@ -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 diff --git a/tests/integration/test_devops_runner.py b/tests/integration/test_devops_runner.py index 9b6e84a..d30ec1b 100644 --- a/tests/integration/test_devops_runner.py +++ b/tests/integration/test_devops_runner.py @@ -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