aboutsummaryrefslogtreecommitdiff
path: root/python/pyarmnn/conftest.py
blob: 0eea35c7e002a91ff3781cef89be482e1e7299ad (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Copyright © 2019 Arm Ltd. All rights reserved.
# SPDX-License-Identifier: MIT
import os

import pytest


@pytest.fixture(scope="module")
def data_folder_per_test(request):
    """
        This fixture returns path to folder with test resources (one per test module)
    """

    basedir, script = request.fspath.dirname, request.fspath.basename
    return str(os.path.join(basedir, "testdata", os.path.splitext(script)[0]))


@pytest.fixture(scope="module")
def shared_data_folder(request):
    """
        This fixture returns path to folder with shared test resources among all tests
    """

    return str(os.path.join(request.fspath.dirname, "testdata", "shared"))


@pytest.fixture(scope="function")
def tmpdir(tmpdir):
    """
        This fixture returns path to temp folder. Fixture was added for py35 compatibility 
    """

    return str(tmpdir)


def pytest_addoption(parser):
    parser.addoption('--juno', action='store_true', dest="juno",
                     default=False, help="enable juno fpga related tests")


def pytest_configure(config):
    config.addinivalue_line(
        "markers", "juno: mark test to run only on juno"
    )

    if not config.option.juno:
        setattr(config.option, 'markexpr', 'not juno')