My dotfiles
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

run_adapter.py 411 B

před 3 roky
12345678910111213141516
  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)