tests/mocktime.py
author Pierre-Yves DAVID <pierre-yves.david@octobus.net>
Sat, 04 Jun 2022 19:04:01 +0200
changeset 49484 ebbaf6a77807
parent 49037 642e31cb55f0
permissions -rw-r--r--
compare-disco: add an option to skip the case If we already know the context, we can save a lot of display space by skipping the case. This also open the way to speedup to the way we specify the subsets. (the code is hacky, but this is a quicky and dirty debug script)

import os
import time


class mocktime:
    def __init__(self, increment):
        self.time = 0
        self.increment = [float(s) for s in increment.split()]
        self.pos = 0

    def __call__(self):
        self.time += self.increment[self.pos % len(self.increment)]
        self.pos += 1
        return self.time


def uisetup(ui):
    time.time = mocktime(os.environ.get('MOCKTIME', '0.1'))