Skip to content

Commit 3d479e4

Browse files
authored
tests: enable Connection API ITs (#309)
* tests: enable Connection API ITs The abstract base class for all Connection API integration tests were marked with category IntegrationTest, while all concrete subclasses were marked with ParallelIntegrationTest. This caused them to be excluded from the CI builds. * chore: run formatter
1 parent 0fb3c2b commit 3d479e4

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/ITAbstractSpannerTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import com.google.cloud.spanner.Database;
2020
import com.google.cloud.spanner.ErrorCode;
2121
import com.google.cloud.spanner.GceTestEnvConfig;
22-
import com.google.cloud.spanner.IntegrationTest;
2322
import com.google.cloud.spanner.IntegrationTestEnv;
2423
import com.google.cloud.spanner.ResultSet;
2524
import com.google.cloud.spanner.SpannerExceptionFactory;
@@ -43,13 +42,11 @@
4342
import org.junit.Before;
4443
import org.junit.BeforeClass;
4544
import org.junit.ClassRule;
46-
import org.junit.experimental.categories.Category;
4745

4846
/**
4947
* Base class for integration tests. This class is located in this package to be able to access
5048
* package-private methods of the Connection API
5149
*/
52-
@Category(IntegrationTest.class)
5350
public abstract class ITAbstractSpannerTest {
5451
protected class ITConnectionProvider implements GenericConnectionProvider {
5552
public ITConnectionProvider() {}

0 commit comments

Comments
 (0)