Compare commits

..

No commits in common. "95ec64630a84950f5c7091880bcc00452e1de232" and "e87fb6d153a64b563f89eab517285ad7793831b3" have entirely different histories.

2 changed files with 5 additions and 13 deletions

View File

@ -1,8 +1,10 @@
name: Daily cloudflare API integration test
on:
schedule:
- cron: '0 */6 * * *' # Every hour
workflow_dispatch:
push:
branches: [ test ]
# schedule:
# - cron: '0 * * * *' # Every hour
# workflow_dispatch:
jobs:
cloudflare-api-test:

View File

@ -18,11 +18,6 @@ test {
useJUnitPlatform {
excludeTags 'integration'
}
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
exceptionFormat "full" // shows full stack trace
showStandardStreams = true // shows println/log output
}
}
tasks.register('integrationTestOnly', Test) {
@ -31,11 +26,6 @@ tasks.register('integrationTestOnly', Test) {
}
description = 'Runs only integration tests tagged with @Tag("integration")'
group = 'verification'
testLogging {
events "passed", "skipped", "failed"
exceptionFormat "full"
showStandardStreams = true
}
}
repositories {