1#!/usr/bin/env python3 2# Copyright (c) 2023 Intel Corporation 3# 4# SPDX-License-Identifier: Apache-2.0 5""" 6Tests for the mixins class 7""" 8 9import os 10 11import pytest 12 13 14def test_disable_pytest_test_collection(test_data): 15 test_path = os.path.join(test_data, 'mixins') 16 17 return_code = pytest.main([test_path]) 18 19 assert return_code == 5 20