Merge "Adds timestamps to scenarios iterations"

This commit is contained in:
Jenkins 2015-01-13 01:55:56 +00:00 committed by Gerrit Code Review
commit f8b82e77f3

View File

@ -13,6 +13,7 @@
# License for the specific language governing permissions and limitations
# under the License.
import datetime
import multiprocessing
import random
import re
@ -1316,6 +1317,9 @@ class FakeTimer(rally_utils.Timer):
def duration(self):
return 10
def timestamp(self):
return datetime.datetime(2015, 1, 1)
@base_ctx.context("fake", order=1)
class FakeContext(base_ctx.Context):