/
githubmirror
/
rdma-core
Обзор
Документация
Войти
/
githubmirror
/
rdma-core
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/run_tests.py
14 строк
447 B
Kamal Heib
tests: Add support for parsing command arguments
14 апр 2020, 18:55
14 апр 2020, 18:55
bf65fb5
Код
Авторство
О чём код?
#!/usr/bin/env python3 # SPDX-License-Identifier: (GPL-2.0 OR Linux-OpenIB) # Copyright (c) 2018, Mellanox Technologies. All rights reserved. See COPYING file from args_parser import parser import unittest import os from importlib.machinery import SourceFileLoader module_path = os.path.join(os.path.dirname(__file__), '__init__.py') tests = SourceFileLoader('tests', module_path).load_module() parser.parse_args() unittest.main(module=tests)