Skip to content

Commit 2958843

Browse files
committed
disable tests that don't work in Github Actions
1 parent 1eabfeb commit 2958843

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

aws/localstack/src/test/java/io/reflectoring/customerregistration/CustomerImageStoreTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import io.reflectoring.customerregistration.repositories.CustomerImageStore;
1313
import org.junit.jupiter.api.AfterEach;
1414
import org.junit.jupiter.api.BeforeEach;
15+
import org.junit.jupiter.api.Disabled;
1516
import org.junit.jupiter.api.Test;
1617
import org.junit.jupiter.api.extension.ExtendWith;
1718

@@ -34,6 +35,7 @@
3435
@ExtendWith(LocalstackDockerExtension.class)
3536
@ActiveProfiles("local")
3637
@LocalstackDockerProperties(services = { "s3" })
38+
@Disabled(value = "Disabled because starting Docker containers like this does not run on GitHub Actions.")
3739
class CustomerImageStoreTest {
3840

3941
private static final Region region = Region.US_EAST_1;

aws/localstack/src/test/java/io/reflectoring/customerregistration/CustomerProfileStoreTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import io.reflectoring.customerregistration.repositories.CustomerProfileStore;
1111
import org.junit.jupiter.api.AfterEach;
1212
import org.junit.jupiter.api.BeforeEach;
13+
import org.junit.jupiter.api.Disabled;
1314
import org.junit.jupiter.api.Test;
1415
import org.junit.jupiter.api.extension.ExtendWith;
1516

@@ -37,6 +38,7 @@
3738
@ExtendWith(LocalstackDockerExtension.class)
3839
@ActiveProfiles("local")
3940
@LocalstackDockerProperties(services = { "dynamodb"})
41+
@Disabled(value = "Disabled because starting Docker containers like this does not run on GitHub Actions.")
4042
class CustomerProfileStoreTest {
4143

4244
private static final Region region = Region.US_EAST_1;

0 commit comments

Comments
 (0)