File tree 4 files changed +10
-4
lines changed
src/test/java/com/google/cloud/spanner/jdbc
4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 166
166
<dependency >
167
167
<groupId >org.testcontainers</groupId >
168
168
<artifactId >testcontainers</artifactId >
169
- <version >1.19.8 </version >
169
+ <version >1.20.1 </version >
170
170
<scope >test</scope >
171
171
</dependency >
172
172
<dependency >
Original file line number Diff line number Diff line change 48
48
<dependency >
49
49
<groupId >org.testcontainers</groupId >
50
50
<artifactId >testcontainers</artifactId >
51
- <version >1.19.8 </version >
51
+ <version >1.20.1 </version >
52
52
<scope >test</scope >
53
53
</dependency >
54
54
<dependency >
Original file line number Diff line number Diff line change 109
109
<dependency >
110
110
<groupId >org.testcontainers</groupId >
111
111
<artifactId >testcontainers</artifactId >
112
- <version >1.19.8 </version >
112
+ <version >1.20.1 </version >
113
113
<scope >test</scope >
114
114
</dependency >
115
115
</dependencies >
Original file line number Diff line number Diff line change @@ -45,7 +45,13 @@ public class ConcurrentTransactionOnEmulatorTest {
45
45
46
46
@ BeforeClass
47
47
public static void startEmulator () {
48
- assumeTrue (DockerClientFactory .instance ().isDockerAvailable ());
48
+ boolean dockerAvailable = false ;
49
+ try {
50
+ dockerAvailable = DockerClientFactory .instance ().isDockerAvailable ();
51
+ } catch (Exception ignore ) {
52
+ // Ignore, and just skip the test.
53
+ }
54
+ assumeTrue (dockerAvailable );
49
55
50
56
emulator =
51
57
new GenericContainer <>(
You can’t perform that action at this time.
0 commit comments