Skip to content

Commit

Permalink
Merge pull request #401 from codecov/infra-team-0-remove-shared-secrets
Browse files Browse the repository at this point in the history
meta,style: remove all secrets identified by gitleaks
  • Loading branch information
rfox-codecov authored Jul 17, 2023
2 parents bc9933c + 12205eb commit 04873c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shared/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class MissingConfigException(Exception):
"github_checks": {"annotations": True},
},
"setup": {
"segment": {"enabled": False, "key": "test93utbz4l7nybyx5y960y8pb8w672"},
"segment": {"enabled": False, "key": "JustARandomTestValueMeaningless"},
"timeseries": {"enabled": False},
},
}
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def mock_configuration(mocker):
"setup": {
"codecov_url": "https://codecov.io",
"encryption_secret": "zp^P9*i8aR3",
"segment": {"enabled": False, "key": "test93utbz4l7nybyx5y960y8pb8w672"},
"segment": {"enabled": False, "key": "JustARandomTestValueMeaningless"},
},
}
mock_config.set_params(our_config)
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_get_config_nothing_user_set(self, mocker):
}
assert get_config("setup", "segment", "enabled") is False
assert (
get_config("setup", "segment", "key") == "test93utbz4l7nybyx5y960y8pb8w672"
get_config("setup", "segment", "key") == "JustARandomTestValueMeaningless"
)
assert get_config("setup", "timeseries", "enabled") is False

Expand Down

0 comments on commit 04873c0

Please sign in to comment.