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
13 from pkg_resources import load_entry_point
15 # argv; py.test test_directory_name user-supplied-arguments
16 args = [os.path.dirname(__file__) + '/tests']
19 if __name__ == '__main__':
20 sys.exit(load_entry_point('pytest', 'console_scripts', 'pytest')(args))