This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch grails-geb in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit d0a55f44f59edf101cacac8767ad5248788420bf Author: James Daugherty <[email protected]> AuthorDate: Mon Apr 21 11:27:53 2025 -0400 Add back @IgnoreIf for github runs --- .../src/integration-test/groovy/functional/tests/TeamSpec.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/grails-test-examples/views-functional-tests/src/integration-test/groovy/functional/tests/TeamSpec.groovy b/grails-test-examples/views-functional-tests/src/integration-test/groovy/functional/tests/TeamSpec.groovy index 052b74c490..6bd4a135e9 100644 --- a/grails-test-examples/views-functional-tests/src/integration-test/groovy/functional/tests/TeamSpec.groovy +++ b/grails-test-examples/views-functional-tests/src/integration-test/groovy/functional/tests/TeamSpec.groovy @@ -82,6 +82,7 @@ class TeamSpec extends HttpClientSpec { ''') } + @IgnoreIf({ System.getenv('GITHUB_REF') }) void 'Test HAL rendering'() { when: HttpRequest request = HttpRequest.GET('/teams/hal/1')
