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: 008f4e44260a7cc78fd9799f71d0082c947b6493 (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
49
50
51
52
53
54
55
language: python
sudo: false
dist: xenial
cache: pip

env:
  global:
    - PYTHONFAULTHANDLER=x
    - SKIP_LATEX_BUILD=1
    - IS_PYTHON=true

matrix:
  include:
    - python: '3.5'
      env:
        - TOXENV=du12
    - python: '3.6'
      env:
        - TOXENV=du13
    - python: '3.7'
      env:
        - TOXENV=du14
    - python: '3.8'
      env:
        - TOXENV=du15
        - PYTEST_ADDOPTS="--cov ./ --cov-append --cov-config setup.cfg"
    - python: 'nightly'
      env:
        - TOXENV=du16
    - python: '3.6'
      env: TOXENV=docs
    - python: '3.6'
      env: TOXENV=docslint
    - python: '3.6'
      env: TOXENV=mypy
    - python: '3.6'
      env: TOXENV=flake8

    - language: node_js
      node_js:
        - 10.7
      env: IS_PYTHON=false
      services: xvfb

install:
  - "sudo apt-get install graphviz"
  - if [ $IS_PYTHON = true ]; then pip install -U tox codecov; fi
  - if [ $IS_PYTHON = false ]; then npm install; fi

script:
  - if [ $IS_PYTHON = true ]; then tox -- -v; fi
  - if [ $IS_PYTHON = false ]; then npm test; fi

after_success:
  - if [[ -e .coverage ]]; then codecov -e $TOXENV; fi