run-repos-tests.py
来自「linux subdivision ying gai ke yi le ba」· Python 代码 · 共 17 行
PY
17 行
#!/usr/bin/env python
#
# run-repos-tests.py: run repository test programs
# Fix the import path
import os, sys
python_libs = os.path.join(os.path.dirname(sys.argv[0]), '../python-libs')
sys.path.insert(0, python_libs)
# Run the tests
import exectest
errors = exectest.run_tests(['repos-test'])
sys.exit(errors)
### End of file.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?