Uh oh!
There was an error while loading. Please reload this page.
Moving all system test scripts in system_tests/. - #1463
Conversation
theacodes
commented
Feb 13, 2016
Can we still exclude our system tests if they're a sub-package? If not, can we at least make the package private? |
dhermes
commented
Feb 13, 2016
Sure. Excluding them will mean they don't show up in an |
theacodes
commented
Feb 13, 2016
SGTM. Let's try that. On Fri, Feb 12, 2016, 11:26 PM Danny Hermes notifications@github.com
|
dhermes
commented
Feb 19, 2016
@jonparrott Had a revelation that I could just move those scripts into the |
bdbe005 to
aa5a498CompareAlso removing system_tests/__init__.py so it is no longer a package and making all imports happen locally (rather than from the root of the project). Changes originally inspired by emulator script breakages in googleapis#1373.
aa5a498 to
8c1db22Comparetheacodes
commented
Feb 19, 2016
I can't believe I didn't realize that either. LGTM. |
| include README.rst | ||
| graft gcloud | ||
| global-exclude *.pyc | ||
| recursive-exclude system_tests * |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Moving all system test scripts in system_tests/.
* fix: snippetgen skip REST snippets * upgrade test case to include REST * refactor transport_type computation * revert chunks from incorrect branch * enable REST transport for goldens and update golden files * update golden files with REST enabled Co-authored-by: Anthonios Partheniou <partheniou@google.com>
* feat: adding universe domain support for downscroped credentials * fix lint * address comments * Update tests/test_downscoped.py Co-authored-by: Leo <39062083+lsirac@users.noreply.github.com> --------- Co-authored-by: Leo <39062083+lsirac@users.noreply.github.com>
* fix: Add support for python 3.11 * use python 3.11 for system tests
* samples: Add samples for soft_deleted_buckets * fix: fix linting errors * fix: fix linting errors on #1455 - attempt2 * fix: fix linting errors on #1455 - attempt3 * fix: test_list_buckets errors * fix: address comments by @JesseLovelace * samples: Add storage_list_soft_deleted_buckets.py sample and test cases for all * fix: lint errors space b/w methods. * fix: lint issues. * fix: undo changes in storage_list_buckets.py * fix: lint errors * Change copyright statement. * fix minor typos in doc strings as per code comment
When using multiplexed sessions, the transaction_tag should also be set on the BeginTransactionRequest. --------- Co-authored-by: rahul2393 <irahul@google.com>
PR created by the Librarian CLI to initialize a release. Merging this PR will auto trigger a release. Librarian Version: v1.0.0 Language Image: us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:b8058df4c45e9a6e07f6b4d65b458d0d059241dd34c814f151c8bf6b89211209 <details><summary>google-cloud-spanner: 3.62.0</summary> ## [3.62.0](googleapis/python-spanner@v3.61.0...v3.62.0) (2026-01-14) ### Features * add uuid support (#1310) ([3b1792aa](googleapis/python-spanner@3b1792aa)) ### Bug Fixes * transaction_tag should be set on BeginTransactionRequest (#1463) ([3d3cea0b](googleapis/python-spanner@3d3cea0b)) * resolve pre-release dependency failures and sqlparse recursion (#1472) ([9ec95b7d](googleapis/python-spanner@9ec95b7d)) * handle errors during stream restart in snapshot (#1471) ([c0668735](googleapis/python-spanner@c0668735)) </details>
* chore: add experimental blob url tests * fix
Also removing
system_tests/__init__.pyso it is no longer a package and making all imports happen locally (rather than from the root of the project).Changes originally inspired by emulator script breakages in #1373.
@jonparrott Having to worry about which scripts can see
system_testsis somewhat of an argument for moving intogcloud.system_tests(discussion in #1451). Happy to go that route here instead. WDYT?As-is, the current fix makes
pylintangry, so at the very least we should discuss what to do about that.