mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2025-01-09 14:39:34 -05:00
24 lines
531 B
YAML
24 lines
531 B
YAML
|
language: python
|
||
|
dist: xenial
|
||
|
sudo: false
|
||
|
before_install:
|
||
|
- wget https://matrix.org/git/olm/snapshot/olm-2.3.0.tar.bz2
|
||
|
- tar -xvf olm-2.3.0.tar.bz2
|
||
|
- pushd olm-2.3.0 && make && sudo make PREFIX="/usr" install && popd
|
||
|
- rm -r olm-2.3.0
|
||
|
|
||
|
matrix:
|
||
|
include:
|
||
|
- python: 3.6
|
||
|
env: TOXENV=py36
|
||
|
- python: 3.7
|
||
|
env: TOXENV=py37
|
||
|
- python: 3.7
|
||
|
env: TOXENV=coverage
|
||
|
|
||
|
install: pip install tox-travis
|
||
|
script: tox
|
||
|
|
||
|
after_success:
|
||
|
- bash <(curl -s https://codecov.io/bash)
|