aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-12-20 06:57:01 +0100
committerTristan Gingold <tgingold@free.fr>2022-12-20 06:57:01 +0100
commit53dffcec12e6a3e8bcac73cfef39d5add83da793 (patch)
treeaa252cf8a998b840b613790f91600b62c7816d7c
parent78760e12065e49d5b11d3edf0eb397866ac1ebfa (diff)
downloadghdl-53dffcec12e6a3e8bcac73cfef39d5add83da793.tar.gz
ghdl-53dffcec12e6a3e8bcac73cfef39d5add83da793.tar.bz2
ghdl-53dffcec12e6a3e8bcac73cfef39d5add83da793.zip
testsuite/ypunit/libghdl: only use unittest decorators
-rw-r--r--testsuite/pyunit/libghdl/Comments.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/testsuite/pyunit/libghdl/Comments.py b/testsuite/pyunit/libghdl/Comments.py
index 48321f71d..4106e7e61 100644
--- a/testsuite/pyunit/libghdl/Comments.py
+++ b/testsuite/pyunit/libghdl/Comments.py
@@ -1,6 +1,5 @@
from pathlib import Path
from unittest import TestCase, expectedFailure
-from pytest import mark
import pyGHDL.libghdl as libghdl
from pyGHDL.libghdl import name_table, files_map, errorout_console, flags
@@ -296,7 +295,7 @@ class CommentAssociation(Base):
class Complex(Base):
- @mark.xfail(reason="not yet handled")
+ @expectedFailure # "not yet handled"
def test_Comment2(self) -> None:
"""More exhaustive"""
self.checkFile(self._root / "Complex.vhdl")