Files
PGPy-3_13_patch/.travis.yml

22 lines
548 B
YAML

language: python
python:
- "3.4"
- "3.3"
- "3.2"
- "2.7"
# install pgpdump - it's needed for testing
before_install:
- sudo apt-get update -qq
- sudo apt-get install gnupg pgpdump -qq
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install -r requirements-test.txt
- pip install python-coveralls
- pip install .
# use setup.py to invoke testing via coveralls
script:
PYTHONPATH=. py.test -vv --cov pgpy --cov-report term-missing tests/
# and report coverage to coveralls
after_success:
coveralls