Skip to content

Commit ebda529

Browse files
authored
Merge branch 'master' into patch-1
2 parents 9e18be3 + 00dec4d commit ebda529

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v2.39.0.post0 (2021-05-04)
4+
5+
### Testing and Release Infrastructure
6+
7+
* disable smdataparallel tests
8+
39
## v2.39.0 (2021-04-28)
410

511
### Features

src/sagemaker/pytorch/estimator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(
7575
framework_version (str): PyTorch version you want to use for
7676
executing your model training code. Defaults to ``None``. Required unless
7777
``image_uri`` is provided. List of supported versions:
78-
https://github.com/aws/sagemaker-python-sdk#pytorch-sagemaker-estimators.
78+
https://github.com/aws/deep-learning-containers/blob/master/available_images.md.
7979
py_version (str): Python version you want to use for executing your
8080
model training code. One of 'py2' or 'py3'. Defaults to ``None``. Required
8181
unless ``image_uri`` is provided.

tests/integ/test_smdataparallel_pt.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
)
2929

3030

31+
@pytest.mark.skip(
32+
reason="This test is skipped for now due ML capacity error."
33+
"This test should be re-enabled later."
34+
)
3135
@pytest.mark.skipif(
3236
integ.test_region() not in integ.DATA_PARALLEL_TESTING_REGIONS,
3337
reason="Only allow this test to run in IAD and CMH to limit usage of p3.16xlarge",

tests/integ/test_smdataparallel_tf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
)
2828

2929

30+
@pytest.mark.skip(
31+
reason="This test is skipped for now due ML capacity error."
32+
"This test should be re-enabled later."
33+
)
3034
@pytest.mark.skipif(
3135
integ.test_region() not in integ.DATA_PARALLEL_TESTING_REGIONS,
3236
reason="Only allow this test to run in IAD and CMH to limit usage of p3.16xlarge",

0 commit comments

Comments
 (0)