os-ken/.travis.yml
IWASE Yusuke 156b3d2a6e test_vsctl: Use osrg/ryu-book image as Mininet container
This patch fixes test_vsctl.py to use osrg/ryu-book image as
Mininet container and shortens the testing hours.

Also, this patch removes the Dockerfile for building the Mininet
Docker image.

Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2016-11-18 15:56:33 +09:00

25 lines
372 B
YAML

language: python
python:
- "3.5" # Python 3.5 still needs to be installed on Travis-CI
env:
- TOX_ENV=py27
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=pypy26
- TOX_ENV=pep8
services:
- docker
sudo: required # Required to enable Docker service
install:
- pip install tox coveralls
script:
- NOSE_VERBOSE=0 tox -e $TOX_ENV
after_success:
- coveralls