#91 - Disable unsafe integration tests.

This commit is contained in:
Mark Paluch
2018-12-10 14:06:05 +01:00
parent 82252be5d7
commit d5bfe81d18
2 changed files with 5 additions and 1 deletions

View File

@@ -15,6 +15,7 @@
*/ */
package org.springframework.data.release.deployment; package org.springframework.data.release.deployment;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.release.AbstractIntegrationTests; import org.springframework.data.release.AbstractIntegrationTests;
@@ -29,6 +30,7 @@ import org.springframework.data.release.model.Train;
/** /**
* @author Oliver Gierke * @author Oliver Gierke
*/ */
@Ignore("I will deploy an artifact")
public class DeploymentOperationsIntegrationTests extends AbstractIntegrationTests { public class DeploymentOperationsIntegrationTests extends AbstractIntegrationTests {
@Autowired GitOperations git; @Autowired GitOperations git;

View File

@@ -15,6 +15,7 @@
*/ */
package org.springframework.data.release.sagan; package org.springframework.data.release.sagan;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.release.AbstractIntegrationTests; import org.springframework.data.release.AbstractIntegrationTests;
@@ -23,9 +24,10 @@ import org.springframework.data.release.model.ReleaseTrains;
/** /**
* Integration tests for {@link SaganOperations}. * Integration tests for {@link SaganOperations}.
* *
* @author Oliver Gierke * @author Oliver Gierke
*/ */
@Ignore("I will write to production systems")
public class SaganOperationsIntegrationTests extends AbstractIntegrationTests { public class SaganOperationsIntegrationTests extends AbstractIntegrationTests {
@Autowired SaganOperations sagan; @Autowired SaganOperations sagan;