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

Side by Side Diff: tools/telemetry/telemetry/core/environment.py

Issue 274773002: [telemetry] Prototype for specifying page sets using Python imports and Telemetry discovery. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
(Empty)
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5
6 class Environment(object):
7 def __init__(self, base_paths, test_aliases=None):
8 self._base_paths = base_paths
9 if test_aliases:
10 self._test_aliases = test_aliases
11 else:
12 self._test_aliases = {}
13
14 @property
15 def base_paths(self):
16 return self._base_paths
17
18 @property
19 def test_aliases(self):
20 return self._test_aliases
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/core/discover_unittest.py ('k') | tools/telemetry/telemetry/core/util.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698