gns3-server/.travis.yml

14 lines
252 B
YAML
Raw Normal View History

2013-10-05 02:45:15 +03:00
language: python
2015-01-19 12:51:39 +02:00
python:
2015-11-03 11:59:03 +02:00
- '3.5'
sudo: false
cache: pip
2013-10-05 02:45:15 +03:00
install:
2015-09-04 10:05:44 +03:00
- python setup.py install
- pip install -rdev-requirements.txt
- pip install coveralls
script:
2015-09-04 10:05:44 +03:00
- py.test -v -s tests --cov gns3server --cov-report term-missing
2015-02-05 11:46:27 +02:00
after_success:
2015-09-04 10:05:44 +03:00
- coveralls