mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
15 lines
321 B
YAML
15 lines
321 B
YAML
language: python
|
|
before_install: openssl version
|
|
env:
|
|
- WITH_REQUESTS="True"
|
|
- WITH_REQUESTS="False"
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- pypy
|
|
install:
|
|
- pip install PyYAML pytest --use-mirrors
|
|
- if [ $WITH_REQUESTS = "True" ] ; then pip install requests; fi
|
|
- pip freeze
|
|
script: PYTHONPATH=`pwd` py.test --basetemp=.
|