My dotfiles
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

17 行
411 B

  1. # Copyright (c) Microsoft Corporation. All rights reserved.
  2. # Licensed under the MIT License.
  3. # Replace the "." entry.
  4. import os.path
  5. import sys
  6. sys.path[0] = os.path.dirname(
  7. os.path.dirname(
  8. os.path.abspath(__file__)))
  9. from testing_tools.adapter.__main__ import parse_args, main
  10. if __name__ == '__main__':
  11. tool, cmd, subargs, toolargs = parse_args()
  12. main(tool, cmd, subargs, toolargs)