File size: 475 Bytes
f653bfd |
1 2 3 4 5 6 7 8 9 10 11 12 |
###############################################################################
# Copyright (C) 2020-2021 Habana Labs, Ltd. an Intel Company
###############################################################################
import pytest
def pytest_addoption(parser):
parser.addoption("--custom_op_lib", action="store", help="Location of CustomOp lib", required=True)
@pytest.fixture
def custom_op_lib_path(request):
return request.config.getoption('--custom_op_lib')
|