mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
28 lines
492 B
YAML
28 lines
492 B
YAML
language: python
|
|
sudo: false
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "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
|