Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: tools/telemetry/third_party/typ/run

Issue 1229153003: [Telemetry] Copy typ library to telemetry/third_party. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove typ from telemetry/bootstrap_deps Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/telemetry/third_party/typ/pylintrc ('k') | tools/telemetry/third_party/typ/setup.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 from __future__ import print_function 3 from __future__ import print_function
4 4
5 import argparse 5 import argparse
6 import os 6 import os
7 import subprocess 7 import subprocess
8 import sys 8 import sys
9 9
10 from tools import cov 10 from tools import cov
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 cwd=home_dir) 148 cwd=home_dir)
149 149
150 # Now run all the tests under Python2 and Python3. 150 # Now run all the tests under Python2 and Python3.
151 call(['python', path_to_runner]) 151 call(['python', path_to_runner])
152 if has_python34: 152 if has_python34:
153 call(['python3', path_to_runner]) 153 call(['python3', path_to_runner])
154 154
155 155
156 if __name__ == '__main__': 156 if __name__ == '__main__':
157 sys.exit(main(sys.argv[1:])) 157 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « tools/telemetry/third_party/typ/pylintrc ('k') | tools/telemetry/third_party/typ/setup.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698