1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-09-21 06:01:43 +00:00
senpy/tests/plugins/sleep_plugin/sleep.py

15 lines
327 B
Python
Raw Normal View History

2017-03-14 12:05:52 +00:00
from senpy.plugins import AnalysisPlugin
from time import sleep
2017-03-14 12:05:52 +00:00
class SleepPlugin(AnalysisPlugin):
def activate(self, *args, **kwargs):
sleep(self.timeout)
2015-02-23 01:13:31 +00:00
def analyse_entry(self, entry, params):
sleep(float(params.get("timeout", self.timeout)))
yield entry
2017-06-16 15:53:42 +00:00
def test(self):
pass