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

Side by Side Diff: telemetry/third_party/web-page-replay/test_runner.py

Issue 2210063003: Rename third_party/webpagereplay to third_party/web-page-replay (Closed) Base URL: https://github.com/catapult-project/catapult@master
Patch Set: Created 4 years, 4 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 import unittest 5 import unittest
6 import sys 6 import sys
7 import os 7 import os
8 import optparse 8 import optparse
9 9
10 __all__ = [] 10 __all__ = []
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 if argv is None: 69 if argv is None:
70 argv = sys.argv 70 argv = sys.argv
71 71
72 parser = optparse.OptionParser() 72 parser = optparse.OptionParser()
73 options, args = parser.parse_args(argv[1:]) 73 options, args = parser.parse_args(argv[1:])
74 74
75 runner = _RunnerImpl(filters=args) 75 runner = _RunnerImpl(filters=args)
76 return unittest.main(module=__name__, argv=[sys.argv[0]], 76 return unittest.main(module=__name__, argv=[sys.argv[0]],
77 testLoader=self._loader, 77 testLoader=self._loader,
78 testRunner=runner) 78 testRunner=runner)
OLDNEW
« no previous file with comments | « telemetry/third_party/web-page-replay/sslproxy_test.py ('k') | telemetry/third_party/web-page-replay/test_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698