generate helper doc

This commit is contained in:
Kay0u 2020-05-20 15:27:18 +02:00
parent 250e4bfdef
commit de81a93498
No known key found for this signature in database
GPG key ID: AAFEEB16CFA2AE2D
3 changed files with 18 additions and 0 deletions

View file

@ -3,6 +3,7 @@ stages:
- install - install
- tests - tests
- lint - lint
- doc
default: default:
tags: tags:
@ -18,3 +19,4 @@ include:
- local: .gitlab/ci/install.gitlab-ci.yml - local: .gitlab/ci/install.gitlab-ci.yml
- local: .gitlab/ci/test.gitlab-ci.yml - local: .gitlab/ci/test.gitlab-ci.yml
- local: .gitlab/ci/lint.gitlab-ci.yml - local: .gitlab/ci/lint.gitlab-ci.yml
- local: .gitlab/ci/doc.gitlab-ci.yml

View file

@ -0,0 +1,14 @@
########################################
# DOC
########################################
generate-helpers-doc:
stage: doc
image: "before-install"
needs: []
script:
- cd doc
- python generate_helper_doc.py
artifacts:
paths:
- doc/helpers.html

View file

@ -5,6 +5,7 @@
lint: lint:
stage: lint stage: lint
image: "before-install" image: "before-install"
needs: []
allow_failure: true allow_failure: true
script: script:
- tox -e lint - tox -e lint
@ -12,6 +13,7 @@ lint:
invalidcode: invalidcode:
stage: lint stage: lint
image: "before-install" image: "before-install"
needs: []
script: script:
- tox -e invalidcode - tox -e invalidcode