blob: 95859a66e29b791784efad585573c8e6c173bc23 [file] [log] [blame]
Tom Rinife1193e2019-10-24 11:59:20 -04001#!/usr/bin/env python3
Tom Rini83d290c2018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0
Stephen Warrend2015062016-01-15 11:15:24 -07003
4# Copyright (c) 2015 Stephen Warren
5# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
Stephen Warrend2015062016-01-15 11:15:24 -07006
7# Wrapper script to invoke pytest with the directory name that contains the
8# U-Boot tests.
9
10import os
11import os.path
12import sys
Heinrich Schuchardt89d52af2021-01-28 12:46:11 +010013import pytest
Tom Rini8add4fa2019-10-24 11:59:25 -040014from pkg_resources import load_entry_point
Stephen Warrend2015062016-01-15 11:15:24 -070015
Tom Rini8add4fa2019-10-24 11:59:25 -040016if __name__ == '__main__':
Heinrich Schuchardt89d52af2021-01-28 12:46:11 +010017 # argv; py.test test_directory_name user-supplied-arguments
18 args = [os.path.dirname(__file__) + '/tests']
19 args.extend(sys.argv)
Simon Glassb04f64a2021-10-05 20:18:00 -060020
21 # Use short format by default
22 if not [arg for arg in args if '--tb=' in arg]:
23 args.append('--tb=short')
24
Heinrich Schuchardt89d52af2021-01-28 12:46:11 +010025 sys.exit(pytest.main(args))