Skip to content

Commit

Permalink
fix: clear environment variables to allow GitHub Actions tests to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Zane Clark committed Oct 31, 2024
1 parent 95fbe72 commit c724850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/config/test_get_merged_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ def test_integration_get_merged_config_inheritance(
cli_args,
expected,
):
with mock.patch.dict(os.environ, env_vars):
with mock.patch.dict(os.environ, env_vars, clear=True):
with mock.patch("sys.argv", cli_args):
get_merged_config()
factory_kwargs = mock_deploy_config_factory.call_args.kwargs
Expand Down

0 comments on commit c724850

Please sign in to comment.