mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-04 15:09:42 +00:00
14 lines
252 B
YAML
14 lines
252 B
YAML
language: python
|
|
python:
|
|
- '3.5'
|
|
sudo: false
|
|
cache: pip
|
|
install:
|
|
- python setup.py install
|
|
- pip install -rdev-requirements.txt
|
|
- pip install coveralls
|
|
script:
|
|
- py.test -v -s tests --cov gns3server --cov-report term-missing
|
|
after_success:
|
|
- coveralls
|