Skip to content

Commit 640ccf6

Browse files
committed
Trigger tests.
1 parent ee928fe commit 640ccf6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"comment": "Modify this file in a trivial way to cause this test suite to run",
3-
"modification": 13
3+
"modification": 14
44
}

sdks/python/apache_beam/io/gcp/tests/xlang_spannerio_it_test.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
from typing import NamedTuple
2727
from typing import Optional
2828

29+
import pytest
30+
2931
import apache_beam as beam
3032
from apache_beam import coders
3133
from apache_beam.io.gcp.spanner import ReadFromSpanner
@@ -69,6 +71,11 @@ class SpannerPartTestRow(NamedTuple):
6971
f_timestamp: Optional[Timestamp]
7072

7173

74+
@pytest.mark.uses_gcp_java_expansion_service
75+
@unittest.skipUnless(
76+
os.environ.get('EXPANSION_JARS'),
77+
"EXPANSION_JARS environment var is not provided, "
78+
"indicating that jars have not been built")
7279
@unittest.skipIf(spanner is None, 'GCP dependencies are not installed.')
7380
@unittest.skipIf(
7481
DockerContainer is None, 'testcontainers package is not installed.')

0 commit comments

Comments
 (0)