1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-09-21 14:11:42 +00:00
senpy/tests/plugins/sleep_plugin/sleep.py
J. Fernando Sánchez 8e4578dc25 Closes #40
2017-06-16 18:00:43 +02:00

15 lines
327 B
Python

from senpy.plugins import AnalysisPlugin
from time import sleep
class SleepPlugin(AnalysisPlugin):
def activate(self, *args, **kwargs):
sleep(self.timeout)
def analyse_entry(self, entry, params):
sleep(float(params.get("timeout", self.timeout)))
yield entry
def test(self):
pass