File size: 329 Bytes
9c4ca75 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# Copyright 2024 Databricks
# SPDX-License-Identifier: Apache-2.0
import pytest
from tests.conftest import _get_option
@pytest.fixture
def rank_zero_seed(pytestconfig: pytest.Config) -> int:
"""Read the rank_zero_seed from the CLI option."""
seed = _get_option(pytestconfig, 'seed', default='0')
return int(seed)
|