mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-01-18 07:23:47 +02:00
7cbce0f81b
+ Install VPCS and dynamips from GNS3 PPA + Drop netifaces-py3 from requirements.txt + Fix/update tests to use installed VPCS and dynamips
30 lines
459 B
YAML
30 lines
459 B
YAML
language: python
|
|
|
|
python:
|
|
- "3.3"
|
|
- "3.4"
|
|
|
|
before_install:
|
|
- "sudo add-apt-repository ppa:gns3/ppa -y"
|
|
- "sudo apt-get update -q"
|
|
|
|
install:
|
|
- "pip install -r requirements.txt --use-mirrors"
|
|
- "pip install tox"
|
|
- "sudo apt-get install vpcs dynamips"
|
|
|
|
script: "python setup.py test"
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
notifications:
|
|
email: false
|
|
irc:
|
|
channels:
|
|
- "chat.freenode.net#gns3"
|
|
on_success: change
|
|
on_failure: always
|
|
|