My dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 regels
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)