Skip to content

Commit 1731f24

Browse files
committed
fix error handling
1 parent 5da97b5 commit 1731f24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integ/test_kmeans_efs_fsx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838

3939
@pytest.fixture(scope="module")
4040
def efs_fsx_setup(sagemaker_session):
41-
fs_resources = set_up_efs_fsx(sagemaker_session)
4241
try:
42+
fs_resources = set_up_efs_fsx(sagemaker_session)
4343
yield fs_resources
4444
finally:
4545
tear_down(sagemaker_session, fs_resources)

tests/integ/test_tf_efs_fsx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141

4242
@pytest.fixture(scope="module")
4343
def efs_fsx_setup(sagemaker_session):
44-
fs_resources = set_up_efs_fsx(sagemaker_session)
4544
try:
45+
fs_resources = set_up_efs_fsx(sagemaker_session)
4646
yield fs_resources
4747
finally:
4848
tear_down(sagemaker_session, fs_resources)

0 commit comments

Comments
 (0)