mirror of
https://github.com/morgan9e/noiseprotocol
synced 2026-04-14 00:14:05 +09:00
23 lines
463 B
YAML
Executable File
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
|