Skip to content

Commit

Permalink
chore(python): exclude setup.py in renovate config (#665)
Browse files Browse the repository at this point in the history
* chore(python): exclude setup.py in renovate config

Source-Link: googleapis/synthtool@56da63e
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:993a058718e84a82fda04c3177e58f0a43281a996c7c395e0a56ccc4d6d210d7

* increase timeouts

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Anthonios Partheniou <[email protected]>
  • Loading branch information
3 people authored Sep 8, 2022
1 parent 6f94f7d commit 0138700
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/.OwlBot.lock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest
digest: sha256:1f0dbd02745fb7cf255563dab5968345989308544e52b7f460deadd5e78e63b0
digest: sha256:993a058718e84a82fda04c3177e58f0a43281a996c7c395e0a56ccc4d6d210d7
8 changes: 8 additions & 0 deletions .kokoro/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,10 @@ importlib-metadata==4.12.0 \
# via
# -r requirements.in
# twine
jaraco-classes==3.2.2 \
--hash=sha256:6745f113b0b588239ceb49532aa09c3ebb947433ce311ef2f8e3ad64ebb74594 \
--hash=sha256:e6ef6fd3fcf4579a7a019d87d1e56a883f4e4c35cfe925f86731abc58804e647
# via keyring
jeepney==0.8.0 \
--hash=sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806 \
--hash=sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755
Expand Down Expand Up @@ -299,6 +303,10 @@ markupsafe==2.1.1 \
--hash=sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a \
--hash=sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7
# via jinja2
more-itertools==8.14.0 \
--hash=sha256:1bc4f91ee5b1b31ac7ceacc17c09befe6a40a503907baf9c839c229b5095cfd2 \
--hash=sha256:c09443cd3d5438b8dafccd867a6bc1cb0894389e90cb53d227456b0b0bccb750
# via jaraco-classes
nox==2022.8.7 \
--hash=sha256:1b894940551dc5c389f9271d197ca5d655d40bdc6ccf93ed6880e4042760a34b \
--hash=sha256:96cca88779e08282a699d672258ec01eb7c792d35bbbf538c723172bce23212c
Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
":preserveSemverRanges",
":disableDependencyDashboard"
],
"ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt"],
"ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py"],
"pip_requirements": {
"fileMatch": ["requirements-test.txt", "samples/[\\S/]*constraints.txt", "samples/[\\S/]*constraints-test.txt"]
}
Expand Down
4 changes: 2 additions & 2 deletions tests/system/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def admin_instance_populated(admin_instance, admin_cluster, in_emulator):
# See: https://cloud.google.com/bigtable/docs/emulator
if not in_emulator:
operation = admin_instance.create(clusters=[admin_cluster])
operation.result(timeout=120)
operation.result(timeout=240)

yield admin_instance

Expand Down Expand Up @@ -176,7 +176,7 @@ def data_instance_populated(
serve_nodes=serve_nodes,
)
operation = instance.create(clusters=[cluster])
operation.result(timeout=120)
operation.result(timeout=240)

yield instance

Expand Down
2 changes: 1 addition & 1 deletion tests/system/test_instance_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def _modify_app_profile_helper(
)

operation = app_profile.update(ignore_warnings=ignore_warnings)
operation.result(timeout=120)
operation.result(timeout=240)

alt_profile = instance.app_profile(app_profile_id)
alt_profile.reload()
Expand Down

0 comments on commit 0138700

Please sign in to comment.