1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 18:08:55 +00:00
gns3-server/.travis.yml

33 lines
587 B
YAML
Raw Normal View History

2013-10-04 23:45:15 +00:00
language: python
2015-01-19 10:51:39 +00:00
python:
- "3.3"
- "3.4"
2015-01-19 16:50:09 +00:00
before_install:
- sudo add-apt-repository ppa:gns3/ppa -y
- sudo apt-get update -q
2015-01-20 21:50:26 +00:00
- sudo apt-get install dynamips
2015-01-19 16:50:09 +00:00
2013-10-04 23:45:15 +00:00
install:
2015-01-19 10:51:39 +00:00
- python setup.py install
- pip install -rdev-requirements.txt
2013-10-04 23:45:15 +00:00
script:
2015-02-05 09:46:27 +00:00
- py.test -v -s tests --cov gns3server --cov-report term-missing
2013-10-04 23:45:15 +00:00
2015-01-14 09:39:46 +00:00
#branches:
# only:
# - master
2013-10-04 23:45:15 +00:00
notifications:
email:
- julien@gns3.net
2015-01-14 09:39:46 +00:00
# irc:
# channels:
# - "chat.freenode.net#gns3"
# on_success: change
# on_failure: always
2013-10-04 23:45:15 +00:00
2015-02-05 09:46:27 +00:00
after_success:
2015-03-30 15:24:03 +00:00
- coveralls --data_file .coverage --base_dir gns3server