Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
chore: upgrade gapic-generator-python to 0.39.1 (#147)
feat: add 'from_service_account_info' factory to clients fix: fix sphinx identifiers PiperOrigin-RevId: 350246057 Source-Author: Google APIs <noreply@google.com> Source-Date: Tue Jan 5 16:44:11 2021 -0800 Source-Repo: googleapis/googleapis Source-Sha: 520682435235d9c503983a360a2090025aa47cd1 Source-Link: googleapis/googleapis@5206824 Co-authored-by: Daniel Sanche <sanche@google.com>
- Loading branch information
Showing
with
559 additions
and 413 deletions.
- +7 −27 .coveragerc
- +93 −74 google/cloud/logging_v2/services/config_service_v2/async_client.py
- +123 −89 google/cloud/logging_v2/services/config_service_v2/client.py
- +32 −32 google/cloud/logging_v2/services/config_service_v2/pagers.py
- +27 −17 google/cloud/logging_v2/services/logging_service_v2/async_client.py
- +51 −26 google/cloud/logging_v2/services/logging_service_v2/client.py
- +24 −24 google/cloud/logging_v2/services/logging_service_v2/pagers.py
- +21 −14 google/cloud/logging_v2/services/metrics_service_v2/async_client.py
- +44 −22 google/cloud/logging_v2/services/metrics_service_v2/client.py
- +8 −8 google/cloud/logging_v2/services/metrics_service_v2/pagers.py
- +10 −10 google/cloud/logging_v2/types/log_entry.py
- +10 −10 google/cloud/logging_v2/types/logging.py
- +30 −30 google/cloud/logging_v2/types/logging_config.py
- +9 −9 google/cloud/logging_v2/types/logging_metrics.py
- +4 −3 synth.metadata
- +22 −6 tests/unit/gapic/logging_v2/test_config_service_v2.py
- +22 −6 tests/unit/gapic/logging_v2/test_logging_service_v2.py
- +22 −6 tests/unit/gapic/logging_v2/test_metrics_service_v2.py
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,38 +1,18 @@ | ||
[run] | ||
branch = True | ||
|
||
[report] | ||
fail_under = 100 | ||
show_missing = True | ||
omit = | ||
google/cloud/logging/__init__.py | ||
exclude_lines = | ||
# Re-enable the standard pragma | ||
pragma: NO COVER | ||
# Ignore debug-only repr | ||
def __repr__ | ||
# Ignore pkg_resources exceptions. | ||
# This is added at the module level as a safeguard for if someone | ||
# generates the code and tries to run it without pip installing. This | ||
# makes it virtually impossible to test properly. | ||
except pkg_resources.DistributionNotFound |
Oops, something went wrong.