-
Notifications
You must be signed in to change notification settings - Fork 4
/
.gitlab-ci.yml
35 lines (33 loc) · 1.1 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
py10-pytest:
image:
name: python:3.10
pull_policy: if-not-present
script:
- apt-get update -q -y
- pip install pytest
- pip install .
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
- tar xvzf .secure_files/conv_test.tar.gz
- pytest --pyargs vzg.jconv
py11-pytest:
image:
name: python:3.11
pull_policy: if-not-present
script:
- apt-get update -q -y
- pip install pytest
- pip install .
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
- tar xvzf .secure_files/conv_test.tar.gz
- pytest --pyargs vzg.jconv
py12-pytest:
image:
name: python:3.12
pull_policy: if-not-present
script:
- apt-get update -q -y
- pip install pytest
- pip install .
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
- tar xvzf .secure_files/conv_test.tar.gz
- pytest --pyargs vzg.jconv