mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-12-19 04:47:54 +00:00
d8f622d438
+ As we use Tox there's no need to run seperate builds for python3.3 and python3.4 + There's no need to install the requirements in main environment as all dependencies are handled in the Tox virtualenv's
25 lines
378 B
YAML
25 lines
378 B
YAML
language: python
|
|
|
|
before_install:
|
|
- "sudo add-apt-repository ppa:gns3/ppa -y"
|
|
- "sudo apt-get update -q"
|
|
|
|
install:
|
|
- "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
|
|
|