Skip to content

Commit

Permalink
Temporarily disable mgmt enforcement of py.typed (Azure#24513)
Browse files Browse the repository at this point in the history
I missed  a _bunch_ of management packages in my py.typed update. I need to fix that.

Until then, I'd rather not turn every single build red. Timeline is tomorrow.
  • Loading branch information
scbedd authored May 19, 2022
1 parent a7eedb5 commit 0db0c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/tox/verify_sdist.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def verify_sdist_pytyped(
logging.info("Failed to verify sdist for package [%s]", pkg_name)
exit(1)

if pkg_name not in EXCLUDED_PYTYPE_PACKAGES and "-nspkg" not in pkg_name:
if pkg_name not in EXCLUDED_PYTYPE_PACKAGES and "-nspkg" not in pkg_name and "-mgmt" not in pkg_name:
logging.info("Verifying presence of py.typed: [%s]", pkg_name)
if verify_sdist_pytyped(pkg_dir, namespace, package_data, include_package_data):
logging.info("Py.typed setup.py kwargs are set properly: [%s]", pkg_name)
Expand Down

0 comments on commit 0db0c16

Please sign in to comment.