diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-05-17 14:46:29 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:50 +0200 |
commit | 40bd74942f464ebd944da914192fef2a621a981f (patch) | |
tree | 5ed41105b3c82873aa9d5295105b6a0e78c9cb2f /Makefile.example | |
parent | 2f1507be0b79218f2e7f877a048ab328c2aa16f5 (diff) | |
download | Ishtar-40bd74942f464ebd944da914192fef2a621a981f.tar.bz2 Ishtar-40bd74942f464ebd944da914192fef2a621a981f.zip |
Update html changelog generation
Diffstat (limited to 'Makefile.example')
-rw-r--r-- | Makefile.example | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile.example b/Makefile.example index 0224fbf8b..657b8ecba 100644 --- a/Makefile.example +++ b/Makefile.example @@ -77,6 +77,7 @@ build_doc_changelog: pandoc --standalone --template docs/changelog/template.html CHANGES.md > docs/changelog/build/changelog.html cp -r docs/changelog/css docs/changelog/build/ cp -r docs/changelog/img docs/changelog/build/ + pandoc --standalone --template docs/changelog/template.html CHANGES-DEV.md > docs/changelog/build/changelog-dev.html build_doc: build_doc_values build_doc_model_graph build_doc_changelog ## generate documentation @@ -89,10 +90,6 @@ soft_test: clean ## launch tests without database regeneration cd $(project); $(PYTHON) manage.py test -k --tag gis --exclude-tag ui $(apps) cd $(project); $(PYTHON) manage.py test -k --exclude-tag gis --exclude-tag ui $(apps) -soft_test_multi: clean ## launch multi-process tests without database regeneration - cd $(project); $(PYTHON) manage.py test -k --parallel $(NB_PROCESS) --tag gis $(apps) - cd $(project); $(PYTHON) manage.py test -k --parallel $(NB_PROCESS) --exclude-tag gis $(apps) - soft_test_verbose: clean ## launch tests without database regeneration - verbose cd $(project); $(PYTHON) manage.py test -k --verbosity 2 $(apps) |