Skip to content

Commit

Permalink
don't run integration tests automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcz committed Dec 12, 2023
1 parent ca9ea0e commit aa14796
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,3 @@ dependencies {
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testImplementation 'com.googlecode.windowlicker:windowlicker-swing:r268'
}

test {
systemProperty "ignore.integration.tests", System.getProperty("ignore.integration.tests")
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public class WebClientServiceTests {

@BeforeClass
public static void setUp() throws Exception {
assumeThat(Boolean.getBoolean("ignore.integration.tests"), equalTo(false));
assumeThat(Boolean.getBoolean("run.integration.tests"), equalTo(true));
credentials = new ConfigurationFactory(null).load();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class S3DropBoxEndToEndTests {

@BeforeClass
public static void checkIfCanRun() {
assumeThat(Boolean.getBoolean("ignore.integration.tests"), equalTo(false));
assumeThat(Boolean.getBoolean("run.integration.tests"), equalTo(true));
}

@After
Expand Down

0 comments on commit aa14796

Please sign in to comment.