build-mar/.travis.yml

42 строки
810 B
YAML

language: python
env:
global:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
matrix:
include:
- python: '2.7'
env: TOXENV=py27,codecov
- python: '3.6'
env: TOXENV=check
- python: '3.6'
env: TOXENV=docs
- python: '3.6'
env: TOXENV=py36,codecov
- python: '3.7-dev'
env: TOXENV=py37,codecov
before_install:
- python --version
- uname -a
- lsb_release -a
install:
- pip install tox
- virtualenv --version
- easy_install --version
- pip --version
- tox --version
script:
- tox -v
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
before_cache:
- rm -rf $HOME/.cache/pip/log
cache:
directories:
- $HOME/.cache/pip
notifications:
email:
on_success: never
on_failure: always