Skip to content

Commit

Permalink
Fix mypy error ignores for Gitlab, do not use exclude=
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Oct 30, 2023
1 parent 488ce9e commit 9e942e6
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,26 @@ multiline-quotes = """
python_version = 3.8
warn_unused_ignores = True
exclude = (?x)(
meshmode/discretization/.*
| meshmode/mesh/__init__.py
| meshmode/mesh/generation\.py
| meshmode/mesh/visualization\.py
| meshmode/mesh/refinement/.*
| meshmode/interop/.*
| meshmode/dof_array\.py
)
[mypy-meshmode.discretization.*]
ignore_errors = True
[mypy-meshmode.mesh]
ignore_errors = True
[mypy-meshmode.mesh.generation]
ignore_errors = True
[mypy-meshmode.mesh.visualization]
ignore_errors = True
[mypy-meshmode.mesh.refinement.*]
ignore_errors = True
[mypy-meshmode.interop.*]
ignore_errors = True
[mypy-meshmode.dof_array]
ignore_errors = True
[mypy-pyvisfile.*]
ignore_missing_imports = True
Expand Down

0 comments on commit 9e942e6

Please sign in to comment.