We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e3526c commit fe40906Copy full SHA for fe40906
Dockerfile
@@ -2,7 +2,7 @@ FROM openjdk:8-jdk as build
2
3
COPY . /project
4
WORKDIR /project
5
-RUN ./gradlew build -x test
+RUN ./gradlew build -PexcludeTests="**/SeleniumTest*"
6
7
# Keep any changes made here strictly in sync with Dockerfile-local
8
FROM itzg/minecraft-server:java8
build.gradle
@@ -71,6 +71,11 @@ subprojects {
71
}
72
73
test {
74
+ // https://github.com/OASIS-learn-study/minecraft-storeys-maker/pull/265/
75
+ if (project.hasProperty('excludeTests')) {
76
+ exclude project.property('excludeTests')
77
+ }
78
+
79
testLogging {
80
// more verbose, but sometimes useful; see e.g. https://github.com/vorburger/minecraft-storeys-maker/pull/16
81
events "failed", "passed", "skipped"
0 commit comments