Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Wh1isper committed Aug 1, 2023
1 parent 9240ae7 commit d305ee4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ def test_deploy_mode(config_builder: ConfigBuilder, mode: str, k8s_config_path):

if mode in ["local", "k8s"]:
with pytest.raises(AlreadyConfiguredError) as e:
config_mode()
if mode == "k8s":
config_mode(k8s_config_path=k8s_config_path)
else:
config_mode()


def test_merge(config_builder: ConfigBuilder):
Expand Down

0 comments on commit d305ee4

Please sign in to comment.