mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 09:13:23 +00:00
This refactoring includes some PEP-8 compliance changes, as well as some more complete testing to ensure that we're in fact serving everything out of cassettes when we thing we are. Incidentally, it also includes fixes for #3 and #4
14 lines
294 B
YAML
14 lines
294 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
|
|
script: pwd; py.test --basetemp=.
|