onionshare/.travis.yml

18 lines
321 B
YAML

language: python
# sudo: required
dist: trusty
python:
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
# command to install dependencies
install:
- pip install Flask==0.12 stem==1.5.4 pytest-cov coveralls
# command to run tests
script: pytest --cov=onionshare test/
after_success:
- coveralls