tahoe-lafs/.travis.yml

41 lines
790 B
YAML
Raw Normal View History

sudo: false
language: python
cache: pip
dist: xenial
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
git:
depth: 1000
env:
global:
2018-04-03 18:07:12 +00:00
- TAHOE_LAFS_HYPOTHESIS_PROFILE=ci
install:
- pip install --upgrade tox setuptools virtualenv
- echo $PATH; which python; which pip; which tox
- python misc/build_helpers/show-tool-versions.py
script:
2019-03-21 16:13:10 +00:00
- |
set -eo pipefail
tox -e ${T}
notifications:
email: false
irc:
channels: "chat.freenode.net#tahoe-lafs"
on_success: always # for testing
on_failure: always
template:
- "%{repository}#%{build_number} [%{branch}: %{commit} by %{author}] %{message}"
- "Changes: %{compare_url} | Details: %{build_url}"
2015-07-29 02:21:31 +00:00
matrix:
include:
2019-03-21 16:13:10 +00:00
- os: linux
python: '3.6'
env: T=py36
2019-03-21 16:13:10 +00:00
2015-07-29 02:21:31 +00:00
fast_finish: true