telemetry.internal.results.story_run
index
telemetry/internal/results/story_run.py

# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

 
Modules
       
telemetry.value.failure
telemetry.value.skip

 
Classes
       
__builtin__.object
StoryRun

 
class StoryRun(__builtin__.object)
     Methods defined here:
AddValue(self, value)
__init__(self, story)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
failed
Whether the current run failed.
 
To be precise: returns true if there is a FailureValue but not
SkipValue in self.values.
ok
Whether the current run is still ok.
 
To be precise: returns true if there is neither FailureValue nor
SkipValue in self.values.
skipped
Whether the current run is being skipped.
 
To be precise: returns true if there is any SkipValue in self.values.
story
values
The values that correspond to this story run.