1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-11 02:18:59 +00:00
gns3-server/.travis.yml
Julien Duponchelle 7ce17cc48f Install dependencies before setup.py install
This fix issues with aiohttp recent versions not supported
on Python 3.4.0
2015-12-16 14:46:26 +01:00

33 lines
587 B
YAML

language: python
python:
- "3.3"
- "3.4"
before_install:
- sudo add-apt-repository ppa:gns3/ppa -y
- sudo apt-get update -q
- sudo apt-get install dynamips
install:
- pip install -rdev-requirements.txt
- python setup.py install
script:
- py.test -v -s tests --cov gns3server --cov-report term-missing
#branches:
# only:
# - master
notifications:
email:
- julien@gns3.net
# irc:
# channels:
# - "chat.freenode.net#gns3"
# on_success: change
# on_failure: always
after_success:
- coveralls --data_file .coverage --base_dir gns3server