Files
noiseprotocol/.travis.yml
Piotr Lizończyk 88eb72f5c3 Update .travis.yml
2017-11-04 00:04:35 +01:00

23 lines
463 B
YAML
Executable File

language: python
matrix:
fast_finish: true
allow_failures:
- os: osx # Travis is SO slow with OS X.
os:
- linux
- osx
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