2019-01-25 22:36:25 +01:00
|
|
|
language: python
|
|
|
|
dist: xenial
|
|
|
|
sudo: false
|
|
|
|
python:
|
|
|
|
- "3.6"
|
|
|
|
- "3.7"
|
2020-03-29 12:45:25 +02:00
|
|
|
- "3.8"
|
2019-01-25 22:36:25 +01:00
|
|
|
|
|
|
|
before_install:
|
2019-05-25 11:43:39 +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:
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
- pip install pytest
|
|
|
|
- pip install hypothesis
|
|
|
|
|
|
|
|
script:
|
|
|
|
python -m pytest
|