view tests/mocktime.py @ 51865:0604673428b7

rust-revlog: add revlog-specific config objects These will be used by the upcoming Rust `InnerRevlog` to better centralize config information that is relevant to revlogs.
author Raphaël Gomès <rgomes@octobus.net>
date Wed, 19 Jun 2024 12:25:12 +0200
parents 642e31cb55f0
children
line wrap: on
line source

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'))