
I might be wrong here, but i think wheel should only be needed during upload time for bdist_wheel. Having it in requirements.txt like that means that pbr will pick it up as an actual dependency.
28 lines
747 B
YAML
28 lines
747 B
YAML
# Config file for automatic testing at travis-ci.org
|
|
|
|
language: python
|
|
|
|
python:
|
|
- "3.3"
|
|
- "2.7"
|
|
- "2.6"
|
|
- "pypy"
|
|
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
|
install: pip install coverage coveralls wheel -r requirements.txt -r test-requirements.txt
|
|
|
|
# command to run tests, e.g. python setup.py test
|
|
script: coverage run -m testtools.run discover
|
|
|
|
after_success:
|
|
coveralls
|
|
|
|
deploy:
|
|
provider: pypi
|
|
user: jamielennox
|
|
password:
|
|
secure: jVdHbMX5JlkscdUM0mufIm1JS7KYKUmul2/4z28aDFmxZeI2G+9SEbJjWN6eRzux+BIhXkBlwWCYpP1JakcKESVX3MbiLMVlzeAEWLV4YXZuuqe/IxUDC9WTrW+n9kRg0gWHFL/MrK7J5bpf+v6CWWdQh5Q9rnuNKB1bagGVPAg=
|
|
on:
|
|
tags: true
|
|
repo: jamielennox/requests-mock
|