Skip to content

Freeze framework integ test to latest version #359

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 2 commits into from
Aug 21, 2018
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
13 changes: 9 additions & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@

from sagemaker import Session
from sagemaker.local import LocalSession
from sagemaker.chainer.defaults import CHAINER_VERSION
from sagemaker.pytorch.defaults import PYTORCH_VERSION
from sagemaker.mxnet.defaults import MXNET_VERSION
from sagemaker.tensorflow.defaults import TF_VERSION


DEFAULT_REGION = 'us-west-2'

Expand Down Expand Up @@ -91,21 +96,21 @@ def chainer_version(request):
return request.param


@pytest.fixture(scope='module', params=['1.4.1', '1.5.0', '1.6.0', '1.7.0', '1.8.0'])
@pytest.fixture(scope='module', params=[TF_VERSION])
def tf_full_version(request):
return request.param


@pytest.fixture(scope='module', params=['0.12.1', '1.0.0', '1.1.0', '1.2.1'])
@pytest.fixture(scope='module', params=[MXNET_VERSION])
def mxnet_full_version(request):
return request.param


@pytest.fixture(scope='module', params=["0.4.0"])
@pytest.fixture(scope='module', params=[PYTORCH_VERSION])
def pytorch_full_version(request):
return request.param


@pytest.fixture(scope='module', params=['4.0.0', '4.1.0'])
@pytest.fixture(scope='module', params=[CHAINER_VERSION])
def chainer_full_version(request):
return request.param