Skip to content

Commit

Permalink
comment stub and filename change (#2453)
Browse files Browse the repository at this point in the history
Co-authored-by: Garth N. Wells <gnw20@cam.ac.uk>
  • Loading branch information
nate-sime and garth-wells committed Nov 15, 2022
1 parent 627059a commit 3a28747
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ def collect_pkg_modules_recursive(name):


def test_all_implemented():
"""
flake8 does not catch its warning code F822: whether the public API
offered by the members of __all__ are implemented. We therefore manually
check.
"""
module_names = collect_pkg_modules_recursive("dolfinx")
for module_name in module_names:
module = importlib.import_module(module_name)
Expand Down

0 comments on commit 3a28747

Please sign in to comment.