1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2024-11-17 11:57:03 +01:00

.drone.yml: Add git to python container
All checks were successful
continuous-integration/drone/push Build is passing

Now that I am installing my own fork of falcon-swagger-ui we need
to have git so we can install it with pip.
This commit is contained in:
Alan Orth 2020-12-27 14:22:23 +02:00
parent 33dc210452
commit d1c177e146
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -24,7 +24,7 @@ steps:
commands: commands:
- id - id
- python -V - python -V
- apt update && apt install -y gcc - apt update && apt install -y gcc git
- pip install -r requirements-dev.txt - pip install -r requirements-dev.txt
- pytest - pytest
@ -71,6 +71,7 @@ steps:
commands: commands:
- id - id
- python -V - python -V
- apt update && apt install -y git
- pip install -r requirements-dev.txt - pip install -r requirements-dev.txt
- pytest - pytest
@ -109,6 +110,7 @@ steps:
commands: commands:
- id - id
- python -V - python -V
- apt update && apt install -y git
- pip install -r requirements-dev.txt - pip install -r requirements-dev.txt
- pytest - pytest
@ -147,6 +149,7 @@ steps:
commands: commands:
- id - id
- python -V - python -V
- apt update && apt install -y git
- pip install -r requirements-dev.txt - pip install -r requirements-dev.txt
- pytest - pytest