11 lines
238 B
Python
11 lines
238 B
Python
"""Pytest configuration for Simpl-Open credential delivery tests."""
|
|
|
|
import pytest
|
|
from dagster import build_op_context
|
|
|
|
|
|
@pytest.fixture
|
|
def op_context():
|
|
"""Fixture for creating a basic op context."""
|
|
return build_op_context()
|