From 9605e525c054476f24988ae306bbde57acd4e2ba Mon Sep 17 00:00:00 2001 From: Judy Ng Date: Wed, 27 Mar 2024 13:24:40 -0400 Subject: [PATCH] assert false verything Signed-off-by: Judy Ng --- .../integration-tests/tests/performance_tests/test_openfoam.py | 1 + tests/integration-tests/tests/performance_tests/test_osu.py | 2 ++ tests/integration-tests/tests/performance_tests/test_scaling.py | 2 ++ tests/integration-tests/tests/performance_tests/test_starccm.py | 1 + .../tests/performance_tests/test_startup_time.py | 2 ++ 5 files changed, 8 insertions(+) diff --git a/tests/integration-tests/tests/performance_tests/test_openfoam.py b/tests/integration-tests/tests/performance_tests/test_openfoam.py index 9689941300..14d40ce066 100644 --- a/tests/integration-tests/tests/performance_tests/test_openfoam.py +++ b/tests/integration-tests/tests/performance_tests/test_openfoam.py @@ -48,6 +48,7 @@ def test_openfoam( number_of_nodes, test_datadir, ): + assert False cluster_config = pcluster_config_reader(number_of_nodes=max(number_of_nodes)) cluster = clusters_factory(cluster_config) logging.info("Cluster Created") diff --git a/tests/integration-tests/tests/performance_tests/test_osu.py b/tests/integration-tests/tests/performance_tests/test_osu.py index 559129d53c..55b503598a 100644 --- a/tests/integration-tests/tests/performance_tests/test_osu.py +++ b/tests/integration-tests/tests/performance_tests/test_osu.py @@ -40,6 +40,8 @@ def test_osu( scheduler_commands_factory, request, ): + assert False + if instance not in OSU_BENCHMARKS_INSTANCES: raise Exception( f"OSU benchmarks can't be run on instance {instance}. " diff --git a/tests/integration-tests/tests/performance_tests/test_scaling.py b/tests/integration-tests/tests/performance_tests/test_scaling.py index ada615eddb..3a49ba2617 100644 --- a/tests/integration-tests/tests/performance_tests/test_scaling.py +++ b/tests/integration-tests/tests/performance_tests/test_scaling.py @@ -111,6 +111,7 @@ def test_scaling_stress_test( - Log with the Metrics Source that can be used from CloudWatch Console - A Metrics Image showing the scale up and scale down using a linear graph with annotations """ + assert False # Get the scaling parameters scaling_test_config_file = request.config.getoption("scaling_test_config") scaling_test_config = validate_and_get_scaling_test_config(scaling_test_config_file) @@ -177,6 +178,7 @@ def test_static_scaling_stress_test( up and down with dynamic nodes, by updating a cluster to use the target number of static nodes. This test produces the same metrics and outputs as the dynamic scaling stress test. """ + assert False # Get the scaling parameters scaling_test_config_file = request.config.getoption("scaling_test_config") scaling_test_config = validate_and_get_scaling_test_config(scaling_test_config_file) diff --git a/tests/integration-tests/tests/performance_tests/test_starccm.py b/tests/integration-tests/tests/performance_tests/test_starccm.py index 200e1e0f28..d8672323fa 100644 --- a/tests/integration-tests/tests/performance_tests/test_starccm.py +++ b/tests/integration-tests/tests/performance_tests/test_starccm.py @@ -61,6 +61,7 @@ def test_starccm( scheduler_commands_factory, s3_bucket_factory, ): + assert False # Create S3 bucket for custom actions scripts bucket_name = s3_bucket_factory() s3 = boto3.client("s3") diff --git a/tests/integration-tests/tests/performance_tests/test_startup_time.py b/tests/integration-tests/tests/performance_tests/test_startup_time.py index 49ed638524..e8369953e5 100644 --- a/tests/integration-tests/tests/performance_tests/test_startup_time.py +++ b/tests/integration-tests/tests/performance_tests/test_startup_time.py @@ -85,6 +85,8 @@ def get_metric(os, cluster, instance_type, instance_id, cw_client): def test_startup_time(pcluster_config_reader, clusters_factory, test_datadir, region, os, scheduler): + assert False + cluster_config = pcluster_config_reader() cluster = clusters_factory(cluster_config)