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: c468867aebc805d223b37fd8da82ad973227600f (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
language: python
sudo: false
cache:
  directories:
    - $HOME/.cache/pip
python:
  - "2.6"
  - "2.7"
  - "3.3"
  - "3.4"
  - "3.5"
  - "3.5-dev"
  - "pypy"
env:
  global:
    - TEST=-v
  matrix:
    - DOCUTILS=0.11
    - DOCUTILS=0.12
install:
  - pip install -U pip
  - pip install docutils==$DOCUTILS
  - pip install -r test-reqs.txt
before_script: flake8
script:

  -  if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then make test-async; fi
  -  if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then make test; fi