From 957566f47af6a5a10d38cc5f27551019165ea2f0 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 23 Jun 2021 00:41:40 +0200 Subject: Formatted pyunit tests via black. --- testsuite/pyunit/dom/Sanity.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'testsuite/pyunit/dom/Sanity.py') 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) -- cgit v1.2.3