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
63 """Get a set of artifacts representing all files in the cwd."""
70 """Get a list of artifacts based on PyPi's json metadata.
75 artifacts = set()
82 artifacts.add(
85 return artifacts
89 artifacts = set()
91 artifacts |= _get_remote_artifacts_for_package(package, version)
92 return artifacts
96 """Compare the local artifacts to the packages uploaded to PyPI."""
103 print("The following artifacts exist locally but not remotely.")
107 print("The following artifacts exist remotely but not locally.")
117 "artifacts to be uploaded. Note that PyPI may take several minutes"