2020-04-18 13:45:44 +02:00
|
|
|
# SPDX-License-Identifier: MIT
|
2020-04-18 13:03:02 +02:00
|
|
|
# Copyright (C) 2019-2020 Tobias Gruetzmacher
|
2019-12-03 23:52:14 +01:00
|
|
|
import time
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
2020-04-18 13:03:02 +02:00
|
|
|
@pytest.fixture()
|
|
|
|
def _nosleep(monkeypatch):
|
2019-12-03 23:52:14 +01:00
|
|
|
|
|
|
|
def sleep(seconds):
|
|
|
|
pass
|
|
|
|
|
|
|
|
monkeypatch.setattr(time, 'sleep', sleep)
|