2 # SPDX-License-Identifier: GPL-2.0
4 # Copyright (c) 2015 Stephen Warren
5 # Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
7 # Wrapper script to invoke pytest with the directory name that contains the
10 from __future__ import print_function
19 # argv; py.test test_directory_name user-supplied-arguments
20 args = ['py.test', os.path.dirname(__file__) + '/tests']
24 os.execvp('py.test', args)
26 # Log full details of any exception for detailed analysis
29 # Hint to the user that they likely simply haven't installed the required
32 exec(py.test) failed; perhaps you are missing some dependencies?
33 See test/py/README.md for the list.''', file=sys.stderr)