Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/integ/test_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import os

import numpy
import pytest
import tempfile

from tests.integ import lock as lock
Expand All @@ -30,6 +31,7 @@
LOCK_PATH = os.path.join(tempfile.gettempdir(), "sagemaker_test_git_lock")


@pytest.mark.local_mode
def test_git_support_with_pytorch(sagemaker_local_session):
script_path = "mnist.py"
data_path = os.path.join(DATA_DIR, "pytorch_mnist")
Expand Down Expand Up @@ -59,6 +61,7 @@ def test_git_support_with_pytorch(sagemaker_local_session):
predictor.delete_endpoint()


@pytest.mark.local_mode
def test_git_support_with_mxnet(sagemaker_local_session, mxnet_full_version):
script_path = "mnist.py"
data_path = os.path.join(DATA_DIR, "mxnet_mnist")
Expand Down