moto/tests/test_batch/test_batch.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
329 B
Python
Raw Normal View History

import boto3
import pytest
from moto import mock_batch
@pytest.mark.parametrize("region", ["us-west-2", "cn-northwest-1"])
@mock_batch
def test_batch_regions(region):
client = boto3.client("batch", region_name=region)
resp = client.describe_jobs(jobs=[""])
assert resp["ResponseMetadata"]["HTTPStatusCode"] == 200