source:
ammosreader/.gitlab-ci.yml@
437474e
Last change on this file since 437474e was 437474e, checked in by , 3 years ago | |
---|---|
|
|
File size: 432 bytes |
Rev | Line | |
---|---|---|
[8073839] | 1 | image: python:latest |
[3c396a4] | 2 | pages: |
3 | stage: deploy | |
4 | script: | |
[050ace0] | 5 | - python3 --version |
[2d2c629] | 6 | - pip install -U sphinx |
[437474e] | 7 | - pip install --upgrade sphinx_adc_theme |
[3c396a4] | 8 | - sphinx-build -b html doc/rst/ public |
9 | artifacts: | |
10 | paths: | |
11 | - public | |
12 | only: | |
13 | - main | |
14 | pytest: | |
15 | stage: test | |
16 | script: | |
17 | - cd tests | |
[ab26682] | 18 | - pip install -U pytest |
[3c396a4] | 19 | - pytest --junitxml=report.xml |
20 | artifacts: | |
21 | when: always | |
22 | reports: | |
[bca0f7e] | 23 | junit: tests/report.xml |
Note:
See TracBrowser
for help on using the repository browser.