Skip to content

Skip the s3_plugin test before new binary released #177

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 26, 2019
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 test/integration/sagemaker/test_mnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import os

import boto3
import pytest
from sagemaker.tensorflow import TensorFlow
from six.moves.urllib.parse import urlparse

Expand Down Expand Up @@ -80,6 +81,8 @@ def test_distributed_mnist_ps(sagemaker_session, ecr_image, instance_type, frame
_assert_s3_file_exists(sagemaker_session.boto_region_name, estimator.model_data)


# TODO: Enable this test when new binary fixing the s3 plugin released
@pytest.mark.skip(reason='Skip the test until new binary released')
def test_s3_plugin(sagemaker_session, ecr_image, instance_type, region, framework_version):
resource_path = os.path.join(os.path.dirname(__file__), '..', '..', 'resources')
script = os.path.join(resource_path, 'mnist', 'mnist_estimator.py')
Expand Down