Skip to content

Commit

Permalink
assert false verything
Browse files Browse the repository at this point in the history
Signed-off-by: Judy Ng <[email protected]>
  • Loading branch information
judysng committed Mar 27, 2024
1 parent 8f96eec commit 9605e52
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 2 additions & 0 deletions tests/integration-tests/tests/performance_tests/test_osu.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}. "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 9605e52

Please sign in to comment.