1language: python
2
3python:
4  - "2.7"
5  - "3.3"
6  - "3.4"
7  - "3.5"
8  - "3.5-dev"
9  - "3.6"
10  - "3.6-dev"  # 3.6 development branch
11  - "3.7-dev"  # 3.7 development branch
12
13install:
14  - pip install -r requirements.txt
15  - pip install -r requirements.test.txt
16  - python setup.py install --record installed-files.txt
17
18before_script:
19  - make test-before
20
21script:
22  - python pretty_bad_protocol/test/test_gnupg.py basic encodings parsers keyrings listkeys genkey sign crypt expiration signing
23