-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test: add initial test data and update gitignore * test: add missing file * test: add goldens * test: add golden test * test: update gapic-combo to pubsub from bigquery * test: update goldens * test: remove unused tests * chore: remove further unused files * test: update golden test logic for repo * test: update goldens with new repo test: omit gapic-combo test: include gapic-combo again in goldens * fix: sort TOC alphabetically by href * test: restrict to 3.9 * test: address review comments for test_goldens * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: update presubmit name * fix: address review comment Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
b66f42b
commit ff8902e
Showing
444 changed files
with
92,518 additions
and
1,997 deletions.
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
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
# Install Sphinx plugin | ||
-e . | ||
|
||
# Tox specific dependencies | ||
tox | ||
mock | ||
pytest | ||
|
||
# Other dependencies | ||
black==22.10.0 | ||
parameterized==0.8.1 | ||
# google-resumable-media-python requires manual update as this repo isn't templated. | ||
# python-api-core also requires manual update as it is not templated. | ||
sphinx==4.5.0 | ||
-e . | ||
tox |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
# Copyright 2021 Google LLC | ||
# Copyright 2022 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Don't build any extra formats | ||
import pytest | ||
|
||
formats: | ||
- none | ||
python: | ||
version: 3 | ||
setup_py_install: true | ||
|
||
def pytest_addoption(parser): | ||
parser.addoption("--update-goldens", action="store", default=False) | ||
|
||
|
||
@pytest.fixture | ||
def update_goldens(request): | ||
return request.config.getoption("--update-goldens") |
Oops, something went wrong.