forked from M-Labs/artiq
test_urukul: relax speed
works fine at < 3µs here but needs <5 µs on buildbot-kasli-tester Signed-off-by: Robert Jördens <rj@quartiq.de>
This commit is contained in:
parent
89fecfab50
commit
36c5a7cd04
|
@ -124,7 +124,7 @@ class UrukulTest(ExperimentCase):
|
|||
self.execute(UrukulExp, "switch_speed")
|
||||
dt = self.dataset_mgr.get("dt")
|
||||
print(dt)
|
||||
self.assertLess(dt, 3*us)
|
||||
self.assertLess(dt, 5*us)
|
||||
|
||||
def test_switches_readback(self):
|
||||
self.execute(UrukulExp, "switches_readback")
|
||||
|
@ -142,7 +142,7 @@ class UrukulTest(ExperimentCase):
|
|||
self.execute(UrukulExp, "att_speed")
|
||||
dt = self.dataset_mgr.get("dt")
|
||||
print(dt)
|
||||
self.assertLess(dt, 3*us)
|
||||
self.assertLess(dt, 5*us)
|
||||
|
||||
def test_io_update(self):
|
||||
self.execute(UrukulExp, "io_update")
|
||||
|
|
Loading…
Reference in New Issue