onionshare/.travis.yml

16 lines
330 B
YAML
Raw Normal View History

2014-08-20 22:58:56 -04:00
language: python
2016-02-16 02:09:09 -05:00
sudo: required
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
2016-02-16 02:09:09 -05:00
before_install: "sudo apt-get update; sudo apt-get install -y python3-nose python3-flask python3-stem python3-pyqt5"
install: ""
2014-08-20 22:58:56 -04:00
# command to run tests
script: nosetests3