Skip to content

Commit

Permalink
Merge branch 'main' into trace-id
Browse files Browse the repository at this point in the history
  • Loading branch information
yirutang committed Mar 19, 2024
2 parents e54faeb + bc806ae commit 87ecf76
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 12 deletions.
2 changes: 1 addition & 1 deletion owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@

# run format session for all directories which have a noxfile
for noxfile in Path(".").glob("**/noxfile.py"):
s.shell.run(["nox", "-s", "blacken"], cwd=noxfile.parent, hide_output=False)
s.shell.run(["nox", "-s", "format"], cwd=noxfile.parent, hide_output=False)
2 changes: 0 additions & 2 deletions samples/snippets/append_rows_pending_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@

from google.cloud import bigquery

from . import append_rows_pending

DIR = pathlib.Path(__file__).parent


Expand Down
2 changes: 0 additions & 2 deletions samples/snippets/append_rows_proto2_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@

from google.cloud import bigquery

from . import append_rows_proto2

DIR = pathlib.Path(__file__).parent


Expand Down
2 changes: 0 additions & 2 deletions samples/snippets/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
import pytest
import test_utils.prefixer

from google.cloud import bigquery

prefixer = test_utils.prefixer.Prefixer("python-bigquery-storage", "samples/snippets")


Expand Down
9 changes: 4 additions & 5 deletions tests/unit/test_writer_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@
import time
from unittest import mock

import pytest

from google.api_core import exceptions
from google.cloud.bigquery_storage_v1.services import big_query_write
from google.cloud.bigquery_storage_v1 import types as gapic_types
from google.cloud.bigquery_storage_v1 import exceptions as bqstorage_exceptions
from google.protobuf import descriptor_pb2
import pytest

from google.cloud.bigquery_storage_v1 import exceptions as bqstorage_exceptions
from google.cloud.bigquery_storage_v1 import types as gapic_types
from google.cloud.bigquery_storage_v1.services import big_query_write

REQUEST_TEMPLATE = gapic_types.AppendRowsRequest()

Expand Down

0 comments on commit 87ecf76

Please sign in to comment.