mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2024-10-01 03:35:38 -04:00
31 lines
650 B
YAML
31 lines
650 B
YAML
language: python
|
|
dist: xenial
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libdbus-1-dev
|
|
- libgirepository1.0-dev
|
|
|
|
before_install:
|
|
- 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
|
|
|
|
matrix:
|
|
include:
|
|
- python: 3.8
|
|
env: TOXENV=py38
|
|
- python: 3.9
|
|
env: TOXENV=py39
|
|
- python: 3.9
|
|
env: TOXENV=coverage
|
|
|
|
install: pip install tox-travis aioresponses
|
|
script: tox
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|