summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 712ffd126bac15df798877a95b36ca5b0137fe54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
language: python

matrix:
  include:
    - python: 3.6
      env: TOX_ENV=pycodestyle
    - python: 3.6
      env: TOX_ENV=py36
    - python: 3.6
      env: TOX_ENV=autopep8

    - python: 2.7
      env: TOX_ENV=pycodestyle
    - python: 2.7
      env: TOX_ENV=py27

    - python: 3.5
      env: TOX_ENV=py35

    - python: 3.7-dev
      env: TOX_ENV=py37

# This is disabled because of trouble running on travis CI.
#    - python: pypy
#      env: TOX_ENV=pypy

services:
  - docker

sudo: required  # Required to enable Docker service

install:
  - pip install tox coveralls
  - bash ryu/tests/integrated/common/install_docker_test_pkg_for_travis.sh

script:
  - NOSE_VERBOSE=0 tox -e $TOX_ENV

after_success:
  - coveralls