Files
noiseprotocol/.travis.yml
Piotr Lizończyk 3bfb39883e Cryptography version update (#10)
* 2.1 version of pyca/cryptography got released. Version bumped
* Python 3.5 support reintroduced, as we are now using BLAKE from
Cryptography, not hashlib
* Removed hashlib references, uncommented Cryptography references.
* Enum fix for python 3.5 compat

Closes #9
2017-10-11 18:58:07 +02:00

16 lines
349 B
YAML

language: python
notifications:
email: false
python:
- "3.5"
- "3.6"
- "3.5-dev" # 3.5 development branch
- "3.6-dev" # 3.6 development branch
# - "3.7-dev" # 3.7 development branch
# command to install dependencies
install:
- "pip install -r requirements.txt"
- "pip install pytest-travis-fold"
# command to run tests
script: pytest