Fix drone file
This commit is contained in:
parent
d64dca1ae1
commit
090e68fa8b
1 changed files with 6 additions and 6 deletions
12
.drone.yml
12
.drone.yml
|
@ -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,11 +33,8 @@ 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
|
||||||
host:
|
host:
|
||||||
path: /var/run/docker.sock
|
path: /var/run/docker.sock
|
||||||
|
|
Loading…
Reference in a new issue