Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,21 @@ jobs:
# https://github.com/googleapis/google-cloud-python/issues/17459
DEFAULT_FAIL_UNDER: 99
run: |
# Find all modified packages
modified_packages=$(git diff --name-only HEAD~1 -- packages preview-packages | cut -d/ -f1,2 | sort -u)

existing_modified_packages=()
for pkg in ${modified_packages}; do
if [ -d "${pkg}" ]; then
existing_modified_packages+=("${pkg}")
fi
done

if [ ${#existing_modified_packages[@]} -eq 0 ]; then
echo "All modified packages were deleted. Skipping coverage evaluation."
exit 0
fi

if [ -d .coverage-results ]; then
# Unzip any zipped coverage results
find .coverage-results -type f -name '*.zip' -exec unzip -o {} \;
Expand Down
1 change: 0 additions & 1 deletion .release-please-bulk-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"packages/google-cloud-api-gateway": "1.16.0",
"packages/google-cloud-api-keys": "0.9.0",
"packages/google-cloud-apigee-connect": "1.16.0",
"packages/google-cloud-apigee-registry": "0.10.1",
"packages/google-cloud-apihub": "0.7.0",
"packages/google-cloud-apiregistry": "0.3.0",
"packages/google-cloud-appengine-admin": "1.18.0",
Expand Down
8 changes: 0 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -973,12 +973,6 @@ Libraries
-
-
- `Client Library Issues <https://github.com/googleapis/google-cloud-python/issues>`_
* - `Apigee Registry API <https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-apigee-registry>`_
- preview
- |PyPI-google-cloud-apigee-registry|
-
-
- `Client Library Issues <https://github.com/googleapis/google-cloud-python/issues>`_
* - `App Hub API <https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-apphub>`_
- preview
- |PyPI-google-cloud-apphub|
Expand Down Expand Up @@ -2038,8 +2032,6 @@ Libraries
:target: https://pypi.org/project/google-cloud-gke-multicloud
.. |PyPI-google-cloud-financialservices| image:: https://img.shields.io/pypi/v/google-cloud-financialservices.svg
:target: https://pypi.org/project/google-cloud-financialservices
.. |PyPI-google-cloud-apigee-registry| image:: https://img.shields.io/pypi/v/google-cloud-apigee-registry.svg
:target: https://pypi.org/project/google-cloud-apigee-registry
.. |PyPI-google-cloud-apphub| image:: https://img.shields.io/pypi/v/google-cloud-apphub.svg
:target: https://pypi.org/project/google-cloud-apphub
.. |PyPI-google-cloud-appoptimize| image:: https://img.shields.io/pypi/v/google-cloud-appoptimize.svg
Expand Down
3 changes: 0 additions & 3 deletions librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -372,9 +372,6 @@ libraries:
python:
metadata_name_override: apigeeconnect
default_version: v1
- name: google-cloud-apigee-registry
version: 0.10.1
skip_generate: true
- name: google-cloud-apihub
version: 0.7.0
apis:
Expand Down
13 changes: 0 additions & 13 deletions packages/google-cloud-apigee-registry/.coveragerc

This file was deleted.

34 changes: 0 additions & 34 deletions packages/google-cloud-apigee-registry/.flake8

This file was deleted.

9 changes: 0 additions & 9 deletions packages/google-cloud-apigee-registry/.repo-metadata.json

This file was deleted.

Loading
Loading