From bd3da0217ba8bdc6668bc921d7fc218d0574d3fa Mon Sep 17 00:00:00 2001 From: Lina Wolf <48202465+linawolf@users.noreply.github.com> Date: Thu, 3 Oct 2024 11:57:56 +0200 Subject: [PATCH] [TASK] Use --minimal-test CLI option for documentation tests (#257) This allows us to control specific settings needed for mininmal tests (like setting only a single output format) or more for the future. See also: https://github.com/TYPO3-Documentation/render-guides/pull/765 --- .github/workflows/test-documentation.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-documentation.yml b/.github/workflows/test-documentation.yml index 79ac662..10cc6d5 100644 --- a/.github/workflows/test-documentation.yml +++ b/.github/workflows/test-documentation.yml @@ -14,4 +14,4 @@ jobs: run: | mkdir -p Documentation-GENERATED-temp \ && docker run --rm --pull always -v $(pwd):/project \ - ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --fail-on-log + ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --minimal-test diff --git a/Makefile b/Makefile index e100d2d..53834d0 100644 --- a/Makefile +++ b/Makefile @@ -14,5 +14,5 @@ docs: ## Generate projects docs (from "Documentation" directory) test-docs: ## Test the documentation rendering mkdir -p Documentation-GENERATED-temp - docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --fail-on-log + docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --minimal-test