Lines Matching full:artifacts
16 """Verifies that all gRPC Python artifacts have been successfully published.
18 This script is intended to be run from a directory containing the artifacts
19 that have been uploaded and only the artifacts that have been uploaded. We use
59 """Get a set of artifacts representing all files in the cwd."""
65 """Get a list of artifacts based on PyPi's json metadata.
70 artifacts = set()
74 artifacts.add(
76 return artifacts
80 artifacts = set()
82 artifacts |= _get_remote_artifacts_for_package(package, version)
83 return artifacts
87 """Compare the local artifacts to the packages uploaded to PyPI."""
94 print("The following artifacts exist locally but not remotely.")
98 print("The following artifacts exist remotely but not locally.")
108 "artifacts to be uploaded. Note that PyPI may take several minutes"