diff --git a/tests/integration-tests/tests/common/scaling_common.py b/tests/integration-tests/tests/common/scaling_common.py index 9e8120c323..6061dfdc29 100644 --- a/tests/integration-tests/tests/common/scaling_common.py +++ b/tests/integration-tests/tests/common/scaling_common.py @@ -103,7 +103,7 @@ def get_bootstrap_errors(remote_command_executor: RemoteCommandExecutor, cluster ))[-1]["InstanceId"] logging.warning(f"Instance {instance_id} had bootstrap errors. Check the logs for details.") compute_node_log = client.get_console_output(InstanceId=instance_id)["Output"] - with open(os.path.join(path, f"{ip_address}-{cluster_name}-{instance_id}-{region}-log.txt", "w")) as f: + with open(os.path.join(path, f"{ip_address}-{cluster_name}-{instance_id}-{region}-log.txt"), "w") as f: f.write(compute_node_log) except IndexError: # If the instance with the IP address can't be found, continue to get other bootstrap errors diff --git a/tests/integration-tests/tests/performance_tests/test_scaling.py b/tests/integration-tests/tests/performance_tests/test_scaling.py index 277f4a0ede..1e652d14b9 100644 --- a/tests/integration-tests/tests/performance_tests/test_scaling.py +++ b/tests/integration-tests/tests/performance_tests/test_scaling.py @@ -157,7 +157,7 @@ def test_scaling_stress_test( @pytest.mark.usefixtures("scheduler") -@pytest.mark.parametrize("scaling_strategy", ["all-or-nothing", "best-effort"]) +@pytest.mark.parametrize("scaling_strategy", ["all-or-nothing"]) def test_static_scaling_stress_test( test_datadir, instance,