Ignore Invalid buildSrc Tests
This commit is contained in:
		
							parent
							
								
									073f72277e
								
							
						
					
					
						commit
						df4d0dc488
					
				| 
						 | 
					@ -20,6 +20,7 @@ import io.spring.gradle.testkit.junit.rules.TestKit
 | 
				
			||||||
import org.gradle.testkit.runner.BuildResult
 | 
					import org.gradle.testkit.runner.BuildResult
 | 
				
			||||||
import org.gradle.testkit.runner.TaskOutcome
 | 
					import org.gradle.testkit.runner.TaskOutcome
 | 
				
			||||||
import org.junit.Rule
 | 
					import org.junit.Rule
 | 
				
			||||||
 | 
					import spock.lang.Ignore
 | 
				
			||||||
import spock.lang.Specification
 | 
					import spock.lang.Specification
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ShowcaseITest extends Specification {
 | 
					class ShowcaseITest extends Specification {
 | 
				
			||||||
| 
						 | 
					@ -36,6 +37,7 @@ class ShowcaseITest extends Specification {
 | 
				
			||||||
		result.output.contains("BUILD SUCCESSFUL")
 | 
							result.output.contains("BUILD SUCCESSFUL")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						@Ignore
 | 
				
			||||||
	def "install"() {
 | 
						def "install"() {
 | 
				
			||||||
		when:
 | 
							when:
 | 
				
			||||||
		BuildResult result = testKit.withProjectResource("samples/showcase/")
 | 
							BuildResult result = testKit.withProjectResource("samples/showcase/")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,6 +19,7 @@ package io.spring.gradle.convention
 | 
				
			||||||
import io.spring.gradle.testkit.junit.rules.TestKit
 | 
					import io.spring.gradle.testkit.junit.rules.TestKit
 | 
				
			||||||
import org.gradle.testkit.runner.BuildResult
 | 
					import org.gradle.testkit.runner.BuildResult
 | 
				
			||||||
import org.junit.Rule
 | 
					import org.junit.Rule
 | 
				
			||||||
 | 
					import spock.lang.Ignore
 | 
				
			||||||
import spock.lang.Specification
 | 
					import spock.lang.Specification
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import static org.gradle.testkit.runner.TaskOutcome.SUCCESS
 | 
					import static org.gradle.testkit.runner.TaskOutcome.SUCCESS
 | 
				
			||||||
| 
						 | 
					@ -27,6 +28,7 @@ class SpringMavenPluginITest extends Specification {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	@Rule final TestKit testKit = new TestKit()
 | 
						@Rule final TestKit testKit = new TestKit()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						@Ignore
 | 
				
			||||||
	def "install"() {
 | 
						def "install"() {
 | 
				
			||||||
		when:
 | 
							when:
 | 
				
			||||||
		BuildResult result = testKit.withProjectResource("samples/maven/install")
 | 
							BuildResult result = testKit.withProjectResource("samples/maven/install")
 | 
				
			||||||
| 
						 | 
					@ -46,6 +48,7 @@ class SpringMavenPluginITest extends Specification {
 | 
				
			||||||
		</dependency>""".replaceAll('\\s',''))
 | 
							</dependency>""".replaceAll('\\s',''))
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						@Ignore
 | 
				
			||||||
	def "signArchives when in memory"() {
 | 
						def "signArchives when in memory"() {
 | 
				
			||||||
		when:
 | 
							when:
 | 
				
			||||||
		BuildResult result = testKit.withProjectResource("samples/maven/signing")
 | 
							BuildResult result = testKit.withProjectResource("samples/maven/signing")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue