Skip to content

Commit

Permalink
pyproject.toml: update mypy configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
berquist committed Nov 12, 2024
1 parent 9f0cdf4 commit f4f389a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[tool.mypy]
cache_dir = "build/.mypy_cache"
explicit_package_bases = true
mypy_path = "$MYPY_CONFIG_FILE_DIR/src/sst/core/testingframework"
# This should be 3.6 but is not supported with the newest versions of mypy.
python_version = "3.8"

warn_unused_ignores = true

Expand All @@ -15,5 +18,10 @@ exclude = [
]

[[tool.mypy.overrides]]
module = "sst"
module = [
"blessings",
"sst",
"testtools",
"testtools.testsuite",
]
ignore_missing_imports = true

0 comments on commit f4f389a

Please sign in to comment.