20 lines
578 B
YAML
20 lines
578 B
YAML
language: python
|
|
python:
|
|
- '3.3'
|
|
- '2.7'
|
|
- '2.6'
|
|
- pypy
|
|
install: pip install coverage coveralls wheel -r requirements.txt -r test-requirements.txt
|
|
script: coverage run -m testtools.run discover
|
|
after_success: coveralls
|
|
deploy:
|
|
provider: pypi
|
|
user: jamielennox
|
|
distributions: "sdist bdist_wheel"
|
|
password:
|
|
secure: Ar54IZ/Qp67JQDHS1REfNw/1rbkR8OaGGDuv0UEbpjHVC1zXVTJkqdSnbCMpKPNSTtK6Me44eD0UO58BUvjg6sNAWZbooE5Ni5BOPhSIWXMcsU/M7oGKL7vCD7UIxgtp3CXvPgFm1Mo6ILkpu3MhZeHkZa7E/59lR/MerY6uu58=
|
|
on:
|
|
tags: true
|
|
all_branches: true
|
|
repo: jamielennox/requests-mock
|