Commit 0ff34a6f authored by Federico Vaga's avatar Federico Vaga

tst: fix skipif statement

Signed-off-by: Federico Vaga's avatarFederico Vaga <federico.vaga@cern.ch>
parent 3564deba
...@@ -233,7 +233,7 @@ class TestDma(object): ...@@ -233,7 +233,7 @@ class TestDma(object):
for i in range(1000000): for i in range(1000000):
assert data == dma.read(0, len(data)) assert data == dma.read(0, len(data))
@pytest.mark.skipif(pytest.cfg_bitstream, @pytest.mark.skipif(pytest.cfg_bitstream is None,
reason="We need a bitstream to reflash") reason="We need a bitstream to reflash")
def test_dma_reg_word(self, spec): def test_dma_reg_word(self, spec):
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment