-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconftest.py
30 lines (21 loc) · 897 Bytes
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (c) QuantCo 2023-2025
# SPDX-License-Identifier: BSD-3-Clause
import pytest
from spox import _future, _value_prop
@pytest.fixture(autouse=True)
def warn_when_prop_fails():
_future.set_type_warning_level(_future.TypeWarningLevel.OUTPUTS)
yield
@pytest.fixture(autouse=True)
def use_spox_ort_value_prop():
# TODO: parametrize over the reference runtime and onnxruntime once the former becomes more mature.
_value_prop._VALUE_PROP_BACKEND = _value_prop.ValuePropBackend.ONNXRUNTIME
def pytest_addoption(parser):
parser.addoption(
"--update-schema-snapshots",
action="store_true",
help="Update schema snapshots for stability tests. This should only be used in extraordinary and well understood circumstances.",
)
@pytest.fixture
def update_schema_snapshots(request):
return request.config.getoption("--update-schema-snapshots")