Skip to content

Commit

Permalink
change: remove hardcoded creds from integ test (#1030)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenyu committed Sep 9, 2019
1 parent 1316b63 commit 7ce89df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integ/test_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ def test_git_support_with_pytorch(sagemaker_local_session):


@pytest.mark.local_mode
@pytest.mark.skip("needs a secure authentication approach")
def test_git_support_with_mxnet(sagemaker_local_session):

script_path = "mnist.py"
data_path = os.path.join(DATA_DIR, "mxnet_mnist")
git_config = {
Expand All @@ -94,7 +94,7 @@ def test_git_support_with_mxnet(sagemaker_local_session):
"commit": PRIVATE_COMMIT,
"2FA_enabled": False,
"username": "git-support-test",
"password": "passw0rd@ %",
"password": "", # TODO: find a more secure approach
}
source_dir = "mxnet"
dependencies = ["foo/bar.py"]
Expand Down

0 comments on commit 7ce89df

Please sign in to comment.