Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions samples/tests/test_copy_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import pytest

from .. import copy_table


def test_copy_table(capsys, table_with_data_id, random_table_id, client):
pytest.skip("b/210907595: copy fails for shakespeare table")

copy_table.copy_table(table_with_data_id, random_table_id)
out, err = capsys.readouterr()
Expand Down
3 changes: 3 additions & 0 deletions samples/tests/test_copy_table_cmek.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import pytest

from .. import copy_table_cmek


def test_copy_table_cmek(capsys, random_table_id, table_with_data_id, kms_key_name):
pytest.skip("b/210907595: copy fails for shakespeare table")

copy_table_cmek.copy_table_cmek(random_table_id, table_with_data_id, kms_key_name)
out, err = capsys.readouterr()
Expand Down
2 changes: 2 additions & 0 deletions tests/system/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1207,6 +1207,8 @@ def test_extract_table(self):
self.assertIn("Bharney Rhubble", got)

def test_copy_table(self):
pytest.skip("b/210907595: copy fails for shakespeare table")

# If we create a new table to copy from, the test won't work
# because the new rows will be stored in the streaming buffer,
# and copy jobs don't read the streaming buffer.
Expand Down