ruff check --select I001 --fix applied to all python files that had this as only issue. Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
19 lines
340 B
Python
19 lines
340 B
Python
#!/usr/bin/env python3
|
|
# Copyright (c) 2023 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
"""
|
|
Tests for the mixins class
|
|
"""
|
|
|
|
import os
|
|
|
|
import pytest
|
|
|
|
|
|
def test_disable_pytest_test_collection(test_data):
|
|
test_path = os.path.join(test_data, 'mixins')
|
|
|
|
return_code = pytest.main([test_path])
|
|
|
|
assert return_code == 5
|