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)