Skip to content
Commits on Source (1)
...@@ -54,6 +54,11 @@ sphinx: ...@@ -54,6 +54,11 @@ sphinx:
script: script:
- tox -e docs - tox -e docs
towncrier:
stage: documentation
script:
- tox -e changelog
twine: twine:
stage: packaging stage: packaging
script: script:
......
...@@ -53,10 +53,15 @@ commands = ...@@ -53,10 +53,15 @@ commands =
[testenv:docs] [testenv:docs]
description = build the documentation description = build the documentation
deps = deps =
sphinx
towncrier towncrier
commands = commands =
python -m setup build_sphinx python -m setup build_sphinx
[testenv:changelog]
description = draft the changelog
deps =
towncrier
commands =
towncrier --draft towncrier --draft
[testenv:metadata-release] [testenv:metadata-release]
......