Skip to content

Commit fc98562

Browse files
committed
Fix unit tests failure
1 parent 511ff6a commit fc98562

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

requirements/extras/test_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
tox==3.24.5
2+
setuptools
23
numpy>=2.0.0, <3.0
34
build[virtualenv]==1.2.1
45
flake8==7.1.2

tests/unit/sagemaker/feature_store/test_dataset_builder.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131

3232
@pytest.fixture
3333
def sagemaker_session_mock():
34-
return Mock()
34+
mock = Mock()
35+
mock.sagemaker_config = None
36+
return mock
3537

3638

3739
@pytest.fixture

0 commit comments

Comments
 (0)