We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 946153a commit 63788dfCopy full SHA for 63788df
src/molecule/command/matrix.py
@@ -94,5 +94,6 @@ def matrix(
94
args: MoleculeArgs = ctx.obj.get("args")
95
command_args: CommandArgs = {"subcommand": subcommand}
96
97
- s = scenarios.Scenarios(base.get_configs(args, command_args), [scenario_name])
+ scenario_names = [] if scenario_name is None else [scenario_name]
98
+ s = scenarios.Scenarios(base.get_configs(args, command_args), scenario_names)
99
s.print_matrix()
0 commit comments