@@ -396,34 +396,33 @@ def __init__(
396396 def is_version_not_supported (self , version ):
397397 """ check whether this edition is supported in version """
398398 ver = semver .VersionInfo .parse (version )
399- return (self .minimum_supported_version > ver > self .maximum_supported_version )
399+ return not (self .maximum_supported_version > ver > self .minimum_supported_version )
400400
401401 def set_kwargs (self , kwargs ):
402402 """pick values from the commandline arguments that should override defaults"""
403403 self .use_auto_certs = kwargs ["use_auto_certs" ]
404404 self .cluster_nodes = kwargs ["cluster_nodes" ]
405405
406406 def __repr__ (self ):
407- return """{0.__class__.__name__}
408- enterprise: {0.enterprise}
409- encryption_at_rest: {0.encryption_at_rest}
410- ssl: {0.ssl}
411- replication2: {0.replication2}
412- testrun_name: {0.testrun_name}
413- directory_suffix: {0.directory_suffix}""" .format (
407+ return """Runner Scenario => {0.directory_suffix}
408+ enterprise: {0.enterprise}
409+ encryption_at_rest: {0.encryption_at_rest}
410+ ssl: {0.ssl}
411+ replication2: {0.replication2}
412+ testrun_name: {0.testrun_name}""" .format (
414413 self
415414 )
416415
417416
418417# pylint: disable=too-many-function-args disable=line-too-long
419418EXECUTION_PLAN = [
419+ RunProperties (False , False , True , False , False , False , False , False , "Community" , "C" , False , "3.5.0" , "3.12.4" ),
420+ RunProperties (False , True , True , False , False , False , False , False , "CommunityEnterprise" , "CE" , True , "3.5.0" , "3.12.4" ),
420421 RunProperties (True , False , True , True , True , False , False , True , "Enterprise\n Enc@REST" , "EE" ),
421422 RunProperties (True , False , True , True , True , False , True , False , "Enterprise\n forced OneShard" , "OS" ),
422423 # RunProperties(True, False, True, True, True, True, False, True, "Enterprise\nEnc@REST\nreplication v.2", "EEr2", False, "3.11.999"),
423424 RunProperties (True , False , False , False , False , False , False , True , "Enterprise" , "EP" ),
424425 # RunProperties(True, False, False, False, False, True, False, True, "Enterprise\nreplication v.2", "EPr2", False, "3.11.999"),
425- RunProperties (False , False , True , False , False , False , False , False , "Community" , "C" , False , "3.5.0" , "3.12.4" ),
426- RunProperties (False , True , True , False , False , False , False , False , "CommunityEnterprise" , "CE" , True , "3.5.0" , "3.12.4" ),
427426]
428427
429428
0 commit comments