From 2e2d0be201cd3ca8a82b3d2f938181bc0c7e867e Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 29 Mar 2017 09:36:51 +0800 Subject: [PATCH] skip crashing DMA tests on buildbot --- artiq/test/coredevice/test_rtio.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/artiq/test/coredevice/test_rtio.py b/artiq/test/coredevice/test_rtio.py index 64c478c4d..1dc835a1f 100644 --- a/artiq/test/coredevice/test_rtio.py +++ b/artiq/test/coredevice/test_rtio.py @@ -13,6 +13,7 @@ from artiq.coredevice.comm_analyzer import (StoppedMessage, OutputMessage, Input artiq_low_latency = os.getenv("ARTIQ_LOW_LATENCY") +artiq_in_devel = os.getenv("ARTIQ_IN_DEVEL") class PulseNotReceived(Exception): @@ -497,6 +498,7 @@ class _DMA(EnvExperiment): pass +@unittest.skipUnless(artiq_in_devel, "feature still in development") class DMATest(ExperimentCase): def test_dma_storage(self): exp = self.create(_DMA)