2013-10-04 17:45:15 -06:00
|
|
|
language: python
|
2015-01-19 11:51:39 +01:00
|
|
|
python:
|
|
|
|
- "3.4"
|
2014-08-08 14:32:32 +01:00
|
|
|
|
2015-07-23 10:56:15 +02:00
|
|
|
sudo: false
|
|
|
|
cache: pip
|
|
|
|
|
2013-10-04 17:45:15 -06:00
|
|
|
install:
|
2015-01-19 11:51:39 +01:00
|
|
|
- python setup.py install
|
|
|
|
- pip install -rdev-requirements.txt
|
2015-06-18 15:59:35 +02:00
|
|
|
- pip install coveralls
|
2013-10-04 17:45:15 -06:00
|
|
|
|
2014-08-09 12:05:31 +01:00
|
|
|
script:
|
2015-02-05 10:46:27 +01:00
|
|
|
- py.test -v -s tests --cov gns3server --cov-report term-missing
|
2013-10-04 17:45:15 -06:00
|
|
|
|
2015-01-14 10:39:46 +01:00
|
|
|
#branches:
|
|
|
|
# only:
|
|
|
|
# - master
|
2013-10-08 11:33:51 -06:00
|
|
|
|
2013-10-04 17:45:15 -06:00
|
|
|
notifications:
|
2015-01-26 09:40:48 +01:00
|
|
|
email:
|
|
|
|
- julien@gns3.net
|
2015-01-14 10:39:46 +01:00
|
|
|
# irc:
|
|
|
|
# channels:
|
|
|
|
# - "chat.freenode.net#gns3"
|
|
|
|
# on_success: change
|
|
|
|
# on_failure: always
|
2013-10-04 17:45:15 -06:00
|
|
|
|
2015-02-05 10:46:27 +01:00
|
|
|
after_success:
|
2015-06-18 16:33:24 +02:00
|
|
|
- coveralls
|