Spaces:
Runtime error
Runtime error
Hobson Lane
commited on
Commit
•
d523957
1
Parent(s):
92a552d
Update .gitlab-ci.yml
Browse files- .gitlab-ci.yml +7 -5
.gitlab-ci.yml
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
-
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
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
|