diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-23 00:41:40 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-23 00:41:40 +0200 |
commit | 957566f47af6a5a10d38cc5f27551019165ea2f0 (patch) | |
tree | 1706bfb480a838067e6667d6d7b1aa6d54024cdc /testsuite/pyunit/dom/Sanity.py | |
parent | 513ee743a2f633ed01486621b4684c0608d34219 (diff) | |
download | ghdl-957566f47af6a5a10d38cc5f27551019165ea2f0.tar.gz ghdl-957566f47af6a5a10d38cc5f27551019165ea2f0.tar.bz2 ghdl-957566f47af6a5a10d38cc5f27551019165ea2f0.zip |
Formatted pyunit tests via black.
Diffstat (limited to 'testsuite/pyunit/dom/Sanity.py')
-rw-r--r-- | testsuite/pyunit/dom/Sanity.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/testsuite/pyunit/dom/Sanity.py b/testsuite/pyunit/dom/Sanity.py index 20beb8cbe..10258c38c 100644 --- a/testsuite/pyunit/dom/Sanity.py +++ b/testsuite/pyunit/dom/Sanity.py @@ -32,7 +32,7 @@ # ============================================================================ from sys import executable from subprocess import check_call, STDOUT -from pathlib import Path +from pathlib import Path from pytest import mark if __name__ == "__main__": @@ -43,11 +43,8 @@ if __name__ == "__main__": _TESTSUITE_ROOT = Path(__file__).parent.parent.parent.resolve() _GHDL_ROOT = _TESTSUITE_ROOT.parent + @mark.xfail @mark.parametrize("file", [str(f) for f in _TESTSUITE_ROOT.glob("sanity/**/*.vhdl")]) def test_AllVHDLSources(file): - check_call([ - executable, - _GHDL_ROOT / "pyGHDL/cli/DOM.py", - file - ], stderr=STDOUT) + check_call([executable, _GHDL_ROOT / "pyGHDL/cli/DOM.py", file], stderr=STDOUT) |