Source code for respy.tests.test_interface

import pytest

from respy.config import EXAMPLE_MODELS
from respy.interface import get_example_model
from respy.interface import get_parameter_constraints


@pytest.mark.unit
@pytest.mark.parametrize("model", EXAMPLE_MODELS)
[docs]def test_get_example_model(model): _ = get_example_model(model, with_data=False)
@pytest.mark.unit @pytest.mark.parametrize("model", EXAMPLE_MODELS)
[docs]def test_get_parameter_constraints(model): _ = get_parameter_constraints(model)