language: python
sudo: false
cache: pip
env:
global:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
matrix:
#- TOXENV=check
- TOXENV=docs
matrix:
include:
- python: '3.6'
env:
- TOXENV=py36,report,codecov
- python: '3.7'
env:
- TOXENV=tf2,report,codecov
before_install:
- python --version
- uname -a
- lsb_release -a
- sudo apt-get install -y bedtools
install:
- pip install tox
- virtualenv --version
- easy_install --version
- pip --version
- tox --version
script:
- travis_wait 20 tox -v
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
notifications:
email:
on_success: never
on_failure: always