Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#
# Copyright(c) 2019-2021 Intel Corporation
# Copyright(c) 2024-2025 Huawei Technologies Co., Ltd.
# Copyright(c) 2026 Unvertical
# SPDX-License-Identifier: BSD-3-Clause
#

Expand Down Expand Up @@ -28,7 +29,9 @@


def shuffled_fs_list(n):
return random.sample(list(itertools.islice(itertools.cycle(Filesystem), n)), n)
return random.sample(
list(itertools.islice(itertools.cycle(Filesystem.regular()), n)), n
)


@pytest.mark.os_dependent
Expand Down
Loading