From f616b6e1340ceb82c6be370251f3c193c1574963 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 19:42:57 +0200 Subject: [PATCH] [TASK] Use --minimal-test CLI option for documentation tests (#115) 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 Releases: main, 12.4, 11.5 Co-authored-by: lina.wolf --- .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 123ecc8..24d2972 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 \ No newline at end of file + ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --minimal-test \ No newline at end of file diff --git a/Makefile b/Makefile index 8d42d07..17a881a 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,4 @@ docs: ## Generate projects documentation (from "Documentation" directory) .PHONY: test-docs 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 \ No newline at end of file + docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --minimal-test \ No newline at end of file