"scripts/wan/run_wan_i2v.sh" did not exist on "a843121df39831babf524f62702604645e4b012b"
.travis.yml 919 Bytes
Newer Older
1
# note dist: 'trusty' does not work here
2
dist: xenial
3
4
5
6
7
8
9
10

language: python

# cache miniconda installer and similar files
cache:
  directories:
  - /home/travis/download

11
12
# This matrix tests that the code works on Python 2.7, 3.5, 3.6, 3.7, passes
# lint and example tests.
13
matrix:
14
  fast_finish: true
15
  include:
16
    - env: PYTHON_VERSION="2.7"
17
18
19
20
21
22
23
    - env: PYTHON_VERSION="3.5"
    - env: PYTHON_VERSION="3.6"
    - env: PYTHON_VERSION="3.7"
    - env: PYTHON_VERSION="3.5" RUN_FLAKE8="true" SKIP_INSTALL="true" SKIP_TESTS="true"
    - env: PYTHON_VERSION="3.5" RUN_EXAMPLE_TESTS="true" SKIP_TESTS="true"
  allow_failures:
    - env: PYTHON_VERSION="3.5" RUN_EXAMPLE_TESTS="true" SKIP_TESTS="true"
24

25
addons:
26
27
28
29
30
  apt:
    packages:
      sox
      libsox-dev
      libsox-fmt-all
31
      portaudio19-dev
32
33
34
35
36
37

notifications:
  email: false

install: source build_tools/travis/install.sh
script: bash build_tools/travis/test_script.sh