onionshare/.travis.yml

18 lines
321 B
YAML
Raw Normal View History

2014-08-20 22:58:56 -04:00
language: python
2017-05-31 01:39:06 -04:00
# sudo: required
2016-02-16 02:09:09 -05:00
dist: trusty
2014-08-20 22:58:56 -04:00
python:
2016-02-16 02:09:09 -05:00
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
2014-08-20 22:58:56 -04:00
# command to install dependencies
install:
- pip install Flask==0.12 stem==1.5.4 pytest-cov coveralls
2014-08-20 22:58:56 -04:00
# command to run tests
2017-05-31 01:51:29 -04:00
script: pytest --cov=onionshare test/
2017-05-31 01:53:51 -04:00
after_success:
- coveralls