Hobson Lane commited on
Commit
e6c6ec5
1 Parent(s): 850f0f4

Update .gitlab-ci.yml

Browse files
Files changed (1) hide show
  1. .gitlab-ci.yml +7 -5
.gitlab-ci.yml CHANGED
@@ -1,9 +1,11 @@
1
- run_tests:
2
- image: python:3.10-slim-buster
 
 
 
 
 
3
  before_script:
4
- - echo "Image build has started!"
5
- - apt install git
6
  - pip install -r requirements.txt
7
  script:
8
-
9
  - pytest --verbose
 
1
+ # Official Python language image.
2
+ image: python:3.9
3
+ - apt-get install -y git curl python-pip python-dev python3-dev build-essential graphviz doxygen
4
+ - apt-get update -qy
5
+ - python -v
6
+
7
+ py39:
8
  before_script:
 
 
9
  - pip install -r requirements.txt
10
  script:
 
11
  - pytest --verbose