Skip to content

Commit edc9cbc

Browse files
tswastabdelmegahedgoogle
authored andcommitted
test: skip failing copy table tests (googleapis#1090)
1 parent 6919ca6 commit edc9cbc

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

samples/tests/test_copy_table.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
import pytest
16+
1517
from .. import copy_table
1618

1719

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

2023
copy_table.copy_table(table_with_data_id, random_table_id)
2124
out, err = capsys.readouterr()

samples/tests/test_copy_table_cmek.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
import pytest
16+
1517
from .. import copy_table_cmek
1618

1719

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

2023
copy_table_cmek.copy_table_cmek(random_table_id, table_with_data_id, kms_key_name)
2124
out, err = capsys.readouterr()

tests/system/test_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1207,6 +1207,8 @@ def test_extract_table(self):
12071207
self.assertIn("Bharney Rhubble", got)
12081208

12091209
def test_copy_table(self):
1210+
pytest.skip("b/210907595: copy fails for shakespeare table")
1211+
12101212
# If we create a new table to copy from, the test won't work
12111213
# because the new rows will be stored in the streaming buffer,
12121214
# and copy jobs don't read the streaming buffer.

0 commit comments

Comments
 (0)