forked from M-Labs/artiq
1
0
Fork 0

test: skip some broken ones

This commit is contained in:
Sébastien Bourdeauducq 2024-08-30 13:57:03 +08:00
parent cef423d547
commit c763b9b717
2 changed files with 6 additions and 0 deletions

View File

@ -127,6 +127,7 @@ class _DefaultArg(EnvExperiment):
class DefaultArgTest(ExperimentCase): class DefaultArgTest(ExperimentCase):
@unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/528")
def test_default_arg(self): def test_default_arg(self):
exp = self.create(_DefaultArg) exp = self.create(_DefaultArg)
self.assertEqual(exp.run(), 42) self.assertEqual(exp.run(), 42)
@ -295,6 +296,7 @@ class _RPCCalls(EnvExperiment):
class RPCCallsTest(ExperimentCase): class RPCCallsTest(ExperimentCase):
@unittest.skip("NAC3TODO")
def test_args(self): def test_args(self):
exp = self.create(_RPCCalls) exp = self.create(_RPCCalls)
self.assertEqual(exp.args0(), 0) self.assertEqual(exp.args0(), 0)
@ -332,6 +334,7 @@ class _Annotation(EnvExperiment):
class AnnotationTest(ExperimentCase): class AnnotationTest(ExperimentCase):
@unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/101")
def test_annotation(self): def test_annotation(self):
exp = self.create(_Annotation) exp = self.create(_Annotation)
self.assertEqual(exp.overflow(int64(1)), True) self.assertEqual(exp.overflow(int64(1)), True)
@ -463,6 +466,7 @@ class _EmptyList(EnvExperiment):
class ListTupleTest(ExperimentCase): class ListTupleTest(ExperimentCase):
@unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/529")
def test_list_tuple(self): def test_list_tuple(self):
self.create(_ListTuple).run() self.create(_ListTuple).run()
@ -535,6 +539,7 @@ class _Assert(EnvExperiment):
class AssertTest(ExperimentCase): class AssertTest(ExperimentCase):
@unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/530")
def test_assert(self): def test_assert(self):
exp = self.create(_Assert) exp = self.create(_Assert)

View File

@ -591,6 +591,7 @@ class CoredeviceTest(ExperimentCase):
count = self.dataset_mgr.get("count") count = self.dataset_mgr.get("count")
self.assertEqual(count, 10) self.assertEqual(count, 10)
@unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/532")
def test_pulse_rate(self): def test_pulse_rate(self):
"""Minimum interval for sustained TTL output switching""" """Minimum interval for sustained TTL output switching"""
exp = self.execute(PulseRate) exp = self.execute(PulseRate)