docs: align tdengine build skip flag
This commit is contained in:
@@ -123,6 +123,20 @@ class PortainerComposeResourceLimitsTest {
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void operationRunbooksUseBuildFlagThatSkipsTestCompilation() throws IOException {
|
||||
Path operations = repositoryRoot().resolve("docs/operations");
|
||||
String splitRunbook = Files.readString(operations.resolve("gb32960-service-split-runbook.md"));
|
||||
String tdengineVerification = Files.readString(operations.resolve("vehicle-ingest-tdengine-verification.md"));
|
||||
|
||||
assertThat(splitRunbook)
|
||||
.contains("-Dmaven.test.skip=true")
|
||||
.doesNotContain("-DskipTests");
|
||||
assertThat(tdengineVerification)
|
||||
.contains("-Dmaven.test.skip=true")
|
||||
.doesNotContain("-DskipTests");
|
||||
}
|
||||
|
||||
@Test
|
||||
void dockerEntrypointExecsJavaForSignalHandling() throws IOException {
|
||||
String dockerfile = Files.readString(repositoryRoot().resolve("Dockerfile"));
|
||||
|
||||
Reference in New Issue
Block a user