Skip to content

Commit eec99c1

Browse files
committed
upate instance types for integ test
1 parent 0a0b6e6 commit eec99c1

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

tests/conftest.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,8 @@ def cpu_instance_type(sagemaker_session, request):
363363

364364
@pytest.fixture(scope="module")
365365
def gpu_instance_type(request):
366-
return "ml.p2.xlarge"
366+
return "ml.p3.2xlarge"
367+
# return "ml.p2.xlarge"
367368

368369

369370
@pytest.fixture(scope="session")
@@ -408,7 +409,8 @@ def pytest_generate_tests(metafunc):
408409
region in tests.integ.HOSTING_NO_P2_REGIONS
409410
or region in tests.integ.TRAINING_NO_P2_REGIONS
410411
):
411-
params.append("ml.p2.xlarge")
412+
# params.append("ml.p2.xlarge")
413+
params.append("ml.p3.2xlarge")
412414
metafunc.parametrize("instance_type", params, scope="session")
413415

414416
_generate_all_framework_version_fixtures(metafunc)

tests/integ/test_horovod.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ def test_hvd_gpu(
5959
sagemaker_session,
6060
tensorflow_training_latest_version,
6161
tensorflow_training_latest_py_version,
62-
"ml.p2.xlarge",
62+
# "ml.p2.xlarge",
63+
"ml.p3.2xlarge",
6364
tmpdir,
6465
)
6566

0 commit comments

Comments
 (0)