My dotfiles
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

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