Skip to content

Commit e31efe3

Browse files
[integ-tests] Temporarily Skip MPI on p6-b200.48xlarge
MPI jobs intermittently takes longer and time out on p6-b200.48xlarge. This commit temporarily skip the test to let other checks in the test run
1 parent 7491eb5 commit e31efe3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration-tests/tests/efa/test_efa.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ def test_efa(
7575
scheduler_commands = scheduler_commands_factory(remote_command_executor)
7676

7777
_test_efa_installation(scheduler_commands, remote_command_executor, efa_installed=True, partition="efa-enabled")
78-
_test_mpi(remote_command_executor, slots_per_instance, scheduler, scheduler_commands, partition="efa-enabled")
78+
if instance != "p6-b200.48xlarge":
79+
# TODO: test MPI on p6-b200.48xlarge.
80+
_test_mpi(remote_command_executor, slots_per_instance, scheduler, scheduler_commands, partition="efa-enabled")
7981
logging.info("Running on Instances: {0}".format(get_compute_nodes_instance_ids(cluster.cfn_name, region)))
8082

8183
run_system_analyzer(cluster, scheduler_commands_factory, request, partition="efa-enabled")

0 commit comments

Comments
 (0)