mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-23 07:04:01 +00:00
39 lines
870 B
YAML
39 lines
870 B
YAML
language: python
|
|
python: 3.5
|
|
sudo: false
|
|
branches:
|
|
only:
|
|
- master
|
|
- /^\d\.\d+$/
|
|
- /^\d\.\d+\.\d+(rc\d+|dev\d+)?$/
|
|
env:
|
|
- TOXENV=py27
|
|
- TOXENV=jessie
|
|
- TOXENV=py33
|
|
- TOXENV=py35
|
|
- TOXENV=docs
|
|
install:
|
|
- pip install -U tox twine wheel codecov
|
|
script: tox
|
|
after_success:
|
|
- codecov
|
|
notifications:
|
|
irc:
|
|
use_notice: true
|
|
skip_join: true
|
|
channels:
|
|
- irc.freenode.org#scrapy
|
|
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
|
|
condition: "$TOXENV == py27 && $TRAVIS_TAG =~ ^[0-9]+[.][0-9]+[.][0-9]+(rc[0-9]+|dev[0-9]+)?$"
|