Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c78db3d4ebbbf35e002f336d9d4c03a7c90c42bb (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
41
42
43
44
45
46
47
48
language: python
sudo: false
dist: trusty
cache:
  directories:
    - $HOME/.cache/pip
python:
  - "pypy-5.4.1"
  - "3.6"
  - "3.5"
  - "3.4"
  - "2.7"
  - "nightly"
env:
  global:
    - TEST='-v --durations 25'
    - PYTHONFAULTHANDLER=x
    - PYTHONWARNINGS=all
    - SKIP_LATEX_BUILD=1
  matrix:
    - DOCUTILS=0.12
    - DOCUTILS=0.13.1
matrix:
  exclude:
    - python: "3.4"
      env: DOCUTILS=0.12
    - python: "3.5"
      env: DOCUTILS=0.12
    - python: "3.6"
      env: DOCUTILS=0.12
    - python: nightly
      env: DOCUTILS=0.12
    - python: "pypy-5.4.1"
      env: DOCUTILS=0.12
addons:
  apt:
    packages:
      - graphviz
      - imagemagick
install:
  - pip install -U pip setuptools
  - pip install docutils==$DOCUTILS
  - pip install -r test-reqs.txt
  - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then python3.6 -m pip install mypy typed-ast; fi
script:
  - flake8
  - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then make style-check type-check test-async; fi
  - if [[ $TRAVIS_PYTHON_VERSION != '3.6' ]]; then make test; fi