1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-23 16:44:17 +00:00
scrapy/.travis.yml

39 lines
870 B
YAML
Raw Normal View History

2012-05-16 16:54:12 -03:00
language: python
python: 3.5
sudo: false
branches:
only:
- master
- /^\d\.\d+$/
2016-02-03 22:53:37 -03:00
- /^\d\.\d+\.\d+(rc\d+|dev\d+)?$/
env:
2015-07-31 16:45:43 -03:00
- TOXENV=py27
2016-09-01 10:20:49 +02:00
- TOXENV=jessie
2015-07-31 16:45:43 -03:00
- TOXENV=py33
- TOXENV=py35
2015-07-31 16:45:43 -03:00
- TOXENV=docs
2012-05-16 16:54:12 -03:00
install:
2015-10-12 18:12:56 +05:00
- pip install -U tox twine wheel codecov
2013-11-07 05:01:32 -02:00
script: tox
2015-08-12 16:40:04 -03:00
after_success:
- codecov
notifications:
irc:
use_notice: true
skip_join: true
channels:
- irc.freenode.org#scrapy
2015-07-31 16:39:12 -03:00
cache:
directories:
- $HOME/.cache/pip
deploy:
provider: pypi
distributions: "sdist bdist_wheel"
user: scrapy
password:
secure: JaAKcy1AXWXDK3LXdjOtKyaVPCSFoCGCnW15g4f65E/8Fsi9ZzDfmBa4Equs3IQb/vs/if2SVrzJSr7arN7r9Z38Iv1mUXHkFAyA3Ym8mThfABBzzcUWEQhIHrCX0Tdlx9wQkkhs+PZhorlmRS4gg5s6DzPaeA2g8SCgmlRmFfA=
on:
tags: true
repo: scrapy/scrapy
2016-02-03 22:53:37 -03:00
condition: "$TOXENV == py27 && $TRAVIS_TAG =~ ^[0-9]+[.][0-9]+[.][0-9]+(rc[0-9]+|dev[0-9]+)?$"