File tree 3 files changed +19
-6
lines changed
src/test/java/io/micrometer/release/common
3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 31
31
- name : Grant execute permission for Gradle
32
32
run : chmod +x gradlew
33
33
34
- - name : Build with Gradle including acceptance tests
35
- env :
36
- GH_TOKEN : " "
34
+ - name : Build with Gradle
37
35
run : ./gradlew build
38
36
39
37
acceptanceTests :
54
52
- name : Run e2e tests
55
53
env :
56
54
GH_TOKEN : ${{ secrets.GH_TOKEN }}
57
- run : ./gradlew test --tests "*E2eTests"
55
+ run : ./gradlew e2e
Original file line number Diff line number Diff line change @@ -78,6 +78,18 @@ tasks.named('test') {
78
78
useJUnitPlatform()
79
79
}
80
80
81
+ test {
82
+ useJUnitPlatform() {
83
+ excludeTags(" e2e" )
84
+ }
85
+ }
86
+
87
+ tasks. register(' e2e' , Test ) {
88
+ useJUnitPlatform() {
89
+ includeTags(" e2e" )
90
+ }
91
+ }
92
+
81
93
license {
82
94
header rootProject. file(' gradle/licenseHeader.txt' )
83
95
strictCheck true
Original file line number Diff line number Diff line change 15
15
*/
16
16
package io .micrometer .release .common ;
17
17
18
+ import static org .assertj .core .api .Assertions .assertThat ;
19
+
18
20
import com .fasterxml .jackson .core .JsonProcessingException ;
19
21
import com .fasterxml .jackson .databind .DeserializationFeature ;
20
22
import com .fasterxml .jackson .databind .JsonNode ;
28
30
import java .util .Map ;
29
31
30
32
import org .junit .jupiter .api .BeforeAll ;
31
- import org .junit .jupiter .api .condition . EnabledIfEnvironmentVariable ;
33
+ import org .junit .jupiter .api .Tag ;
32
34
import org .slf4j .Logger ;
33
35
import org .slf4j .LoggerFactory ;
34
36
35
- @ EnabledIfEnvironmentVariable ( named = "GH_TOKEN" , matches = ".* \\ S.* " )
37
+ @ Tag ( "e2e " )
36
38
public interface GithubActions {
37
39
38
40
Logger log = LoggerFactory .getLogger (GithubActions .class );
@@ -45,6 +47,7 @@ public interface GithubActions {
45
47
46
48
@ BeforeAll
47
49
static void resetsMilestones () throws InterruptedException {
50
+ assertThat (System .getenv ("GH_TOKEN" )).as ("GH_TOKEN env var must be set!" ).isNotBlank ();
48
51
log .info (
49
52
"This test requires GH connection and will operate on [{}] repository. It's quite slow because it runs GH actions so please be patient..." ,
50
53
REPO );
You can’t perform that action at this time.
0 commit comments