We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01840c0 commit 78af772Copy full SHA for 78af772
.gitlab-ci.yml
@@ -5,23 +5,31 @@
5
variables:
6
PYTHON_VERSION: '3.10'
7
8
+stages:
9
+- codestyle
10
+- test
11
+
12
lint:
13
+ stage: codestyle
14
extends: .tox
15
16
TOXENV: lint
17
18
format:
19
20
21
22
TOXENV: format
23
24
pytest:
25
+ stage: test
26
27
28
TOXENV: py
29
parallel:
30
matrix:
31
- PYTHON_VERSION:
32
+ - '3.9'
33
- '3.10'
34
- '3.11'
35
- '3.12'
0 commit comments