Skip to content

Commit 65eb64e

Browse files
authored
Merge branch 'master' into master
2 parents 2e82eeb + 1db6069 commit 65eb64e

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

CHANGELOG.md

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

3+
## v2.48.1 (2021-07-08)
4+
5+
### Bug Fixes and Other Changes
6+
7+
* skip HF inference test
8+
* remove upsert from test_workflow
9+
10+
### Documentation Changes
11+
12+
* Add Hugging Face docs
13+
* add tuning step to doc
14+
315
## v2.48.0 (2021-07-07)
416

517
### Features

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.48.1.dev0
1+
2.48.2.dev0

tests/integ/test_huggingface.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ def test_huggingface_training(
6868
hf.fit(train_input)
6969

7070

71-
@pytest.mark.skip(
72-
reason="need to re enable it later",
71+
@pytest.mark.release
72+
@pytest.mark.skipif(
73+
integ.test_region() in integ.TRAINING_NO_P2_REGIONS, reason="no ml.p2 instances in this region"
7374
)
7475
def test_huggingface_training_tf(
7576
sagemaker_session,
@@ -107,9 +108,8 @@ def test_huggingface_training_tf(
107108
hf.fit(train_input)
108109

109110

110-
@pytest.mark.release
111-
@pytest.mark.skipif(
112-
integ.test_region() in integ.TRAINING_NO_P2_REGIONS, reason="no ml.p2 instances in this region"
111+
@pytest.mark.skip(
112+
reason="need to re enable it later",
113113
)
114114
def test_huggingface_inference(
115115
sagemaker_session,

0 commit comments

Comments
 (0)