mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
50 lines
866 B
YAML
50 lines
866 B
YAML
language: python
|
|
sudo: false
|
|
dist: trusty
|
|
cache: pip
|
|
|
|
env:
|
|
global:
|
|
- PYTHONFAULTHANDLER=x
|
|
- SKIP_LATEX_BUILD=1
|
|
|
|
matrix:
|
|
include:
|
|
- python: 'pypy'
|
|
env: TOXENV=pypy
|
|
- python: '2.7'
|
|
env:
|
|
- TOXENV=du13
|
|
- PYTEST_ADDOPTS = --cov sphinx --cov-append --cov-config setup.cfg
|
|
- python: '3.4'
|
|
env: TOXENV=py34
|
|
- python: '3.5'
|
|
env: TOXENV=py35
|
|
- python: '3.6'
|
|
env:
|
|
- TOXENV=py36
|
|
- PYTEST_ADDOPTS = --cov sphinx --cov-append --cov-config setup.cfg
|
|
- python: 'nightly'
|
|
env: TOXENV=py37
|
|
- python: '3.6'
|
|
env: TOXENV=docs
|
|
- python: '3.6'
|
|
env: TOXENV=mypy
|
|
- python: '2.7'
|
|
env: TOXENV=flake8
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- graphviz
|
|
- imagemagick
|
|
|
|
install:
|
|
- pip install -U tox codecov
|
|
|
|
script:
|
|
- tox -- -v
|
|
|
|
after_success:
|
|
- codecov
|