source:
ammosreader/.gitlab-ci.yml@
bca0f7e
Last change on this file since bca0f7e was bca0f7e, checked in by , 3 years ago | |
---|---|
|
|
File size: 386 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 |
[3c396a4] | 7 | - sphinx-build -b html doc/rst/ public |
8 | artifacts: | |
9 | paths: | |
10 | - public | |
11 | only: | |
12 | - main | |
13 | pytest: | |
14 | stage: test | |
15 | script: | |
16 | - cd tests | |
[1731491] | 17 | - pip install -U pytest |
[3c396a4] | 18 | - pytest --junitxml=report.xml |
19 | artifacts: | |
20 | when: always | |
21 | reports: | |
[bca0f7e] | 22 | junit: tests/report.xml |
Note:
See TracBrowser
for help on using the repository browser.