Fix drone file

This commit is contained in:
Thomas Sileo 2019-04-11 22:32:46 +02:00
parent d64dca1ae1
commit 090e68fa8b

View file

@ -1,6 +1,9 @@
pipeline: pipeline:
build: build:
image: python:3 image: python:3
volumes:
- name: dockersock
path: /var/run/docker.sock
commands: commands:
- apt update -y - apt update -y
- apt install -y apt-transport-https ca-certificates curl software-properties-common gnupg2 curl - apt install -y apt-transport-https ca-certificates curl software-properties-common gnupg2 curl
@ -30,9 +33,6 @@ pipeline:
- python -m pytest -v --ignore data -k integration - python -m pytest -v --ignore data -k integration
# Federation tests (with two local instances) # Federation tests (with two local instances)
- python -m pytest -v -s --ignore data -k federatio - python -m pytest -v -s --ignore data -k federatio
volumes:
- name: dockersock
path: /var/run/docker.sock
volumes: volumes:
- name: dockersock - name: dockersock