Skip to content

Commit d20b09f

Browse files
Integration test should not run by default as requires dynamodb local
1 parent 5cf190c commit d20b09f

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@
222222
</execution>
223223
</executions>
224224
</plugin>
225-
225+
<!--
226226
<plugin>
227227
<groupId>com.jcabi</groupId>
228228
<artifactId>jcabi-dynamodb-maven-plugin</artifactId>
@@ -247,7 +247,7 @@
247247
</execution>
248248
</executions>
249249
</plugin>
250-
250+
-->
251251
<plugin>
252252
<groupId>org.apache.maven.plugins</groupId>
253253
<artifactId>maven-failsafe-plugin</artifactId>

src/test/java/org/socialsignin/spring/data/dynamodb/core/DynamoDBTemplateIT.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,19 @@
33
import com.amazonaws.auth.BasicAWSCredentials;
44
import com.amazonaws.services.dynamodbv2.AmazonDynamoDB;
55
import com.amazonaws.services.dynamodbv2.AmazonDynamoDBClient;
6+
67
import org.socialsignin.spring.data.dynamodb.domain.sample.User;
8+
79
import java.util.UUID;
10+
811
import org.junit.Before;
12+
import org.junit.Ignore;
913
import org.junit.Test;
1014

1115
/**
1216
* Integration test that interacts with DynamoDB Local instance.
1317
*/
18+
@Ignore
1419
public class DynamoDBTemplateIT {
1520

1621
private static final String PORT = System.getProperty("dynamodb.port");

0 commit comments

Comments
 (0)