Skip to content

Commit acc99c6

Browse files
hanwen-clusterhanwen-pcluste
authored andcommitted
[integ-tests] Fix test_create_wrong_pcluster_version
The failure was not signaled to CloudFormation via cfn-signal with version 3.6.1 because of this change aws@aeb87fc. In particular, for whatever version<3.10.0 the envar $CFN_BOOTSTRAP_VIRTUALENV_PATH is not set and so the cfn-signal command is not resolved. Therefore, we change the version to 3.10.0 vs 3.11.0 to make ``$CFN_BOOTSTRAP_VIRTUALENV_PATH` setup consistent. Signed-off-by: Hanwen <[email protected]>
1 parent 0431879 commit acc99c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration-tests/tests/create/test_create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def test_create_wrong_pcluster_version(
5858
):
5959
"""Test error message when AMI provided was baked by a pcluster whose version is different from current version"""
6060
current_version = get_installed_parallelcluster_version()
61-
wrong_version = "3.6.1"
61+
wrong_version = "3.10.0"
6262
logging.info("Asserting wrong_version is different from current_version")
6363
assert_that(current_version != wrong_version).is_true()
6464
# Retrieve an AMI without 'aws-parallelcluster-<version>' in its name.

0 commit comments

Comments
 (0)