mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2024-10-01 03:35:38 -04: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-3.0.0.tar.bz2
|
|
- pushd olm-3.0.0 && make && sudo make PREFIX="/usr" install && popd
|
|
- rm -r olm-3.0.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)
|