2020-05-10 14:10:07 +02:00
|
|
|
---
|
|
|
|
## Machine config
|
|
|
|
os: "linux"
|
|
|
|
arch: "amd64"
|
|
|
|
dist: "bionic"
|
|
|
|
version: "~> 1.0"
|
|
|
|
|
|
|
|
## Language config
|
|
|
|
language: "python"
|
2019-01-25 22:36:25 +01:00
|
|
|
python:
|
2020-05-10 14:10:07 +02:00
|
|
|
- "3.6"
|
|
|
|
- "3.7"
|
|
|
|
- "3.8"
|
2019-01-25 22:36:25 +01:00
|
|
|
|
|
|
|
before_install:
|
2020-05-10 14:10:07 +02:00
|
|
|
- wget https://gitlab.matrix.org/matrix-org/olm/-/archive/master/olm-master.tar.bz2
|
|
|
|
- tar -xvf olm-master.tar.bz2
|
|
|
|
- pushd olm-master && make && sudo make PREFIX="/usr" install && popd
|
|
|
|
- rm -r olm-master
|
2019-01-25 22:36:25 +01:00
|
|
|
|
|
|
|
install:
|
2020-05-10 14:10:07 +02:00
|
|
|
- pip install -r requirements.txt
|
|
|
|
- pip install pytest
|
|
|
|
- pip install hypothesis
|
2019-01-25 22:36:25 +01:00
|
|
|
|
2020-05-10 14:10:07 +02:00
|
|
|
script: python -m pytest
|