diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-23 23:01:12 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-23 23:44:14 +0100 |
commit | fbb81d6e6c30d6281e9f3b8a74c3cda41928f81c (patch) | |
tree | a99ecbcd62bcf9505a11c2dfb5f8c4c0e68ad878 /testsuite/pyunit/dom/Sanity.py | |
parent | 5e5e2fb50ed6eba32d614c9c566e280a6f992acb (diff) | |
download | ghdl-fbb81d6e6c30d6281e9f3b8a74c3cda41928f81c.tar.gz ghdl-fbb81d6e6c30d6281e9f3b8a74c3cda41928f81c.tar.bz2 ghdl-fbb81d6e6c30d6281e9f3b8a74c3cda41928f81c.zip |
Updated to pyVHDLModel v0.18.0.
Diffstat (limited to 'testsuite/pyunit/dom/Sanity.py')
-rw-r--r-- | testsuite/pyunit/dom/Sanity.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/testsuite/pyunit/dom/Sanity.py b/testsuite/pyunit/dom/Sanity.py index ff5151fb3..54cb4103b 100644 --- a/testsuite/pyunit/dom/Sanity.py +++ b/testsuite/pyunit/dom/Sanity.py @@ -50,10 +50,11 @@ _SANITY_TESTS_ROOT = _TESTSUITE_ROOT / "sanity" design = Design() -@mark.parametrize("file", [str(f.relative_to(_TESTSUITE_ROOT)) for f in _SANITY_TESTS_ROOT.glob("**/*.vhdl")]) -def test_AllVHDLSources(file): +@mark.parametrize("parameters", [f"{i}:{f.relative_to(_TESTSUITE_ROOT)}" for i, f in enumerate(_SANITY_TESTS_ROOT.glob("**/*.vhdl"))]) +def test_AllVHDLSources(parameters): + id, file = parameters.split(":") filePath = _TESTSUITE_ROOT / file - lib = design.GetLibrary("sanity") + lib = design.GetLibrary(f"sanity_{id}") document = Document(filePath) design.AddDocument(document, lib) |