-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitlab-ci.yml
94 lines (87 loc) · 1.57 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
stages:
- check
black-lint:
image: python:3.12
stage: check
script:
- pip install black
- black --check .
flake8-lint:
image: python:3.12
stage: check
script:
- pip install flake8 flake8-black
- flake8 .
mypy-lint:
image: python:3.12
stage: check
script:
- pip install mypy
- mypy ./kuber --install-types --non-interactive --ignore-missing-imports
pytest-py310:
image: python:3.10
stage: check
script:
- pip install poetry
- poetry install
- >
poetry run
py.test
--verbose
--cov-report term-missing
--cov=.
.
artifacts:
paths:
- .coverage
- coverage.xml
expire_in: 1 day
pytest-py311:
image: python:3.11
stage: check
script:
- pip install poetry
- poetry install
- >
poetry run
py.test
--verbose
--cov-report term-missing
--cov=.
.
artifacts:
paths:
- .coverage
- coverage.xml
expire_in: 1 day
pytest-py312:
image: python:3.12
stage: check
coverage: '/^TOTAL.*\s+\d+\s+\d+\s+(\d+)%/'
script:
- pip install poetry
- poetry install
- >
poetry run
py.test
--verbose
--cov-report term-missing
--cov-report xml
--cov=.
.
artifacts:
reports:
coverage_report:
coverage_format: cobertura
path: junit_coverage_report.xml
paths:
- .coverage
- coverage.xml
expire_in: 1 day
sphinx-build:
image: python:3.12
stage: check
script:
- pip install poetry
- poetry install
- poetry run task manager docs