File size: 305 Bytes
d523957
5fb1d22
 
46f5320
1401a33
d3c3046
92a552d
d3c3046
10d0128
5fb1d22
 
10d0128
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Official Python language image.
test_py38:
  image: python:3.8
  before_script:
    - python -v
    - pip install -r requirements.txt
  script:
    - pytest --verbose

test_py39:
  image: python:3.9
  before_script:
    - python -v
    - pip install -r requirements.txt
  script:
    - pytest --verbose