Spaces:
Runtime error
Runtime error
Hobson Lane
commited on
Commit
•
10d0128
1
Parent(s):
05912c7
Update .gitlab-ci.yml
Browse files- .gitlab-ci.yml +9 -1
.gitlab-ci.yml
CHANGED
@@ -1,8 +1,16 @@
|
|
1 |
# Official Python language image.
|
2 |
-
|
3 |
image: python:3.9
|
4 |
before_script:
|
5 |
- python -v
|
6 |
- pip install -r requirements.txt
|
7 |
script:
|
8 |
- pytest --verbose
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Official Python language image.
|
2 |
+
test_py39:
|
3 |
image: python:3.9
|
4 |
before_script:
|
5 |
- python -v
|
6 |
- pip install -r requirements.txt
|
7 |
script:
|
8 |
- pytest --verbose
|
9 |
+
|
10 |
+
test_py38:
|
11 |
+
image: python:3.8
|
12 |
+
before_script:
|
13 |
+
- python -v
|
14 |
+
- pip install -r requirements.txt
|
15 |
+
script:
|
16 |
+
- pytest --verbose
|