add mkdocs test
All checks were successful
ci/woodpecker/push/tests Pipeline was successful

This commit is contained in:
Ivan Schaller 2022-08-15 14:53:45 +02:00
parent b926bb043e
commit 3eec319706
2 changed files with 10 additions and 0 deletions

View file

@ -63,6 +63,15 @@ pipeline:
- python3 -m pip install -r requirements.txt - python3 -m pip install -r requirements.txt
- python3 -m pylint --fail-under 9 mangadlp/ - 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 code with different python versions - python
test-tox-pytest: test-tox-pytest:
when: when:

View file

@ -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 - Option to run custom hooks before and after each chapter/manga download
- _Tests for the new hooks_ - _Tests for the new hooks_
- _Docs for the new hooks_ - _Docs for the new hooks_
- _Tests for mkdocs generation_
### Changed ### Changed