Hobson Lane commited on
Commit
ba14999
1 Parent(s): 6b07ee4

Update .gitlab-ci.yml

Browse files
Files changed (1) hide show
  1. .gitlab-ci.yml +9 -1
.gitlab-ci.yml CHANGED
@@ -1,8 +1,16 @@
1
  # Official Python language image.
2
- test:
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