megablocks / tests /fixtures /fixtures.py
Akos Hadnagy
WIP
1e1ffe8
raw
history blame contribute delete
329 Bytes
# 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)