From c763b9b7175e7a9f2a1de313c7034dda63c36f08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Fri, 30 Aug 2024 13:57:03 +0800 Subject: [PATCH] test: skip some broken ones --- artiq/test/coredevice/test_embedding.py | 5 +++++ artiq/test/coredevice/test_rtio.py | 1 + 2 files changed, 6 insertions(+) diff --git a/artiq/test/coredevice/test_embedding.py b/artiq/test/coredevice/test_embedding.py index 6c7067973..43a42ef3f 100644 --- a/artiq/test/coredevice/test_embedding.py +++ b/artiq/test/coredevice/test_embedding.py @@ -127,6 +127,7 @@ class _DefaultArg(EnvExperiment): class DefaultArgTest(ExperimentCase): + @unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/528") def test_default_arg(self): exp = self.create(_DefaultArg) self.assertEqual(exp.run(), 42) @@ -295,6 +296,7 @@ class _RPCCalls(EnvExperiment): class RPCCallsTest(ExperimentCase): + @unittest.skip("NAC3TODO") def test_args(self): exp = self.create(_RPCCalls) self.assertEqual(exp.args0(), 0) @@ -332,6 +334,7 @@ class _Annotation(EnvExperiment): class AnnotationTest(ExperimentCase): + @unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/101") def test_annotation(self): exp = self.create(_Annotation) self.assertEqual(exp.overflow(int64(1)), True) @@ -463,6 +466,7 @@ class _EmptyList(EnvExperiment): class ListTupleTest(ExperimentCase): + @unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/529") def test_list_tuple(self): self.create(_ListTuple).run() @@ -535,6 +539,7 @@ class _Assert(EnvExperiment): class AssertTest(ExperimentCase): + @unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/530") def test_assert(self): exp = self.create(_Assert) diff --git a/artiq/test/coredevice/test_rtio.py b/artiq/test/coredevice/test_rtio.py index 1d99c21a2..9c71ba4ce 100644 --- a/artiq/test/coredevice/test_rtio.py +++ b/artiq/test/coredevice/test_rtio.py @@ -591,6 +591,7 @@ class CoredeviceTest(ExperimentCase): count = self.dataset_mgr.get("count") self.assertEqual(count, 10) + @unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/532") def test_pulse_rate(self): """Minimum interval for sustained TTL output switching""" exp = self.execute(PulseRate)