Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Test] Fix test 'test_update_slurm' adapting the constraint in the sbatch command to the flexible instance types used in the config #6592

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/integration-tests/tests/update/test_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,8 @@ def test_update_slurm(region, pcluster_config_reader, s3_bucket_factory, cluster
_check_volume(cluster, updated_config, region)

# Launch a new instance for queue1 and test updated pre/post install script execution and extra json update
# Add a new dynamic node t3.small to queue1-i3
new_compute_node = _add_compute_nodes(slurm_commands, "queue1", "t3.small")
# Add a new dynamic node to queue1-i3
new_compute_node = _add_compute_nodes(slurm_commands, "queue1", "queue1-i3&dynamic")

logging.info(f"New compute node: {new_compute_node}")

Expand Down
Loading