From 3eec319706553ff4c035faacf3903f7b0227eb25 Mon Sep 17 00:00:00 2001 From: Ivan Schaller Date: Mon, 15 Aug 2022 14:53:45 +0200 Subject: [PATCH] add mkdocs test --- .woodpecker/tests.yml | 9 +++++++++ CHANGELOG.md | 1 + 2 files changed, 10 insertions(+) diff --git a/.woodpecker/tests.yml b/.woodpecker/tests.yml index c7d4656..d581650 100644 --- a/.woodpecker/tests.yml +++ b/.woodpecker/tests.yml @@ -63,6 +63,15 @@ pipeline: - python3 -m pip install -r requirements.txt - python3 -m pylint --fail-under 9 mangadlp/ + # test mkdocs generation + test-mkdocs: + image: cr.44net.ch/ci-plugins/tests + pull: true + commands: + - python3 -m pip install mkdocs + - cd docs || exit 1 + - python3 -m mkdocs build --strict + # test code with different python versions - python test-tox-pytest: when: diff --git a/CHANGELOG.md b/CHANGELOG.md index fdf43c2..52343d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Option to run custom hooks before and after each chapter/manga download - _Tests for the new hooks_ - _Docs for the new hooks_ +- _Tests for mkdocs generation_ ### Changed