You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Config Interface + Environments (25e9262 by Leon Wright). BREAKING CHANGES:
Config types now live under 'config_types'
from cally.cli.config.types -> from cally.cli.config.config_types
'as_dataclass' no longer needs to be called, config property will
automatically have the correct type.
CallyStackService().as_dataclass('CallyStackService') ->
CallyStackService().config
Test harness has a 'get_cally_stack_method', should be used instead of
'get_cally_config' for terraform stack tests.
self.get_cally_stack_config(stack_type='ExampleStack')
It's no longer required to provid a 'CallyConfig' to CliRunner based
tests.
Use recently updated release action (565ec81 by Leon Wright).