Skip to content

Commit 751c65b

Browse files
e2e ran on a separate tag
1 parent aca7d77 commit 751c65b

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

.github/workflows/build.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ jobs:
3131
- name: Grant execute permission for Gradle
3232
run: chmod +x gradlew
3333

34-
- name: Build with Gradle including acceptance tests
35-
env:
36-
GH_TOKEN: ""
34+
- name: Build with Gradle
3735
run: ./gradlew build
3836

3937
acceptanceTests:
@@ -54,4 +52,4 @@ jobs:
5452
- name: Run e2e tests
5553
env:
5654
GH_TOKEN: ${{ secrets.GH_TOKEN }}
57-
run: ./gradlew test --tests "*E2eTests"
55+
run: ./gradlew e2e

build.gradle

+12
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,18 @@ tasks.named('test') {
7878
useJUnitPlatform()
7979
}
8080

81+
test {
82+
useJUnitPlatform() {
83+
excludeTags("e2e")
84+
}
85+
}
86+
87+
tasks.register('e2e', Test) {
88+
useJUnitPlatform() {
89+
includeTags("e2e")
90+
}
91+
}
92+
8193
license {
8294
header rootProject.file('gradle/licenseHeader.txt')
8395
strictCheck true

src/test/java/io/micrometer/release/common/GithubActions.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
*/
1616
package io.micrometer.release.common;
1717

18+
import static org.assertj.core.api.Assertions.assertThat;
19+
1820
import com.fasterxml.jackson.core.JsonProcessingException;
1921
import com.fasterxml.jackson.databind.DeserializationFeature;
2022
import com.fasterxml.jackson.databind.JsonNode;
@@ -28,11 +30,11 @@
2830
import java.util.Map;
2931

3032
import org.junit.jupiter.api.BeforeAll;
31-
import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable;
33+
import org.junit.jupiter.api.Tag;
3234
import org.slf4j.Logger;
3335
import org.slf4j.LoggerFactory;
3436

35-
@EnabledIfEnvironmentVariable(named = "GH_TOKEN", matches = ".*\\S.*")
37+
@Tag("e2e")
3638
public interface GithubActions {
3739

3840
Logger log = LoggerFactory.getLogger(GithubActions.class);
@@ -45,6 +47,7 @@ public interface GithubActions {
4547

4648
@BeforeAll
4749
static void resetsMilestones() throws InterruptedException {
50+
assertThat(System.getenv("GH_TOKEN")).as("GH_TOKEN env var must be set!").isNotBlank();
4851
log.info(
4952
"This test requires GH connection and will operate on [{}] repository. It's quite slow because it runs GH actions so please be patient...",
5053
REPO);

0 commit comments

Comments
 (0)