charmed-kubernetes / pytest-operator

Apache License 2.0
7 stars 13 forks source link

Add py.typed marker #85

Closed sed-i closed 2 years ago

sed-i commented 2 years ago

When running static checks, mypy complains:

tests/integration/test_bundle.py:37: error: Skipping analyzing "pytest_operator": module is installed, but missing library stubs or py.typed marker  [import]
    from pytest_operator import plugin
    ^

Error goes away after introducing the py.typed marker.

Ref: Mypy docs for PEP-516

sed-i commented 2 years ago

@addyess wdyt?