We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bd62ba commit e411da2Copy full SHA for e411da2
tests/integration-tests/tests/update/test_update.py
@@ -1203,12 +1203,16 @@ def test_dynamic_file_systems_update(
1203
ebs_mount_dirs=[],
1204
new_raid_mount_dir=[],
1205
efs_mount_dirs=[existing_efs_mount_dir],
1206
- fsx_mount_dirs=[
1207
- existing_fsx_lustre_mount_dir,
1208
- existing_fsx_open_zfs_mount_dir,
1209
- existing_fsx_ontap_mount_dir,
1210
- existing_file_cache_mount_dir,
1211
- ],
+ fsx_mount_dirs=(
+ [
+ existing_fsx_lustre_mount_dir,
+ existing_fsx_open_zfs_mount_dir,
+ existing_fsx_ontap_mount_dir,
+ existing_file_cache_mount_dir,
1212
+ ]
1213
+ if fsx_supported
1214
+ else []
1215
+ ),
1216
file_cache_path=file_cache_path,
1217
)
1218
for mount_dir in all_mount_dirs_update_1:
0 commit comments