17 lines
387 B
YAML
17 lines
387 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 .
|
|
# use setup.py to invoke testing
|
|
script: py.test -vv tests |