pantalaimon/.travis.yml

24 lines
531 B
YAML
Raw Normal View History

2019-04-10 06:43:54 -04:00
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
2019-04-10 06:43:54 -04:00
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)