Files
sphinx/.travis.yml

47 lines
937 B
YAML
Raw Normal View History

os: linux
dist: xenial
language: python
cache: pip
env:
2016-04-18 16:44:35 +09:00
global:
2016-09-15 23:00:15 +09:00
- PYTHONFAULTHANDLER=x
2017-05-11 16:28:25 +09:00
- SKIP_LATEX_BUILD=1
2018-07-24 21:00:47 +02:00
- IS_PYTHON=true
jobs:
include:
2018-08-24 21:58:52 +09:00
- python: '3.5'
env:
2019-02-09 15:21:53 +09:00
- TOXENV=du12
- python: '3.6'
env:
2019-02-09 15:21:53 +09:00
- TOXENV=du13
2018-07-28 18:48:44 +09:00
- python: '3.7'
2019-02-09 15:21:53 +09:00
env:
- TOXENV=du14
2019-12-01 15:29:23 +09:00
- python: '3.8'
env:
- TOXENV=du15
- PYTEST_ADDOPTS="--cov ./ --cov-append --cov-config setup.cfg"
- python: 'nightly'
env:
- TOXENV=du16
2018-07-22 12:39:11 +02:00
- language: node_js
node_js: '10.7'
2018-07-24 21:00:47 +02:00
env: IS_PYTHON=false
services: xvfb
2018-07-22 12:39:11 +02:00
2012-11-03 10:50:50 +01:00
install:
- "sudo apt-get install graphviz"
2018-07-24 21:00:47 +02:00
- if [ $IS_PYTHON = true ]; then pip install -U tox codecov; fi
- if [ $IS_PYTHON = false ]; then npm install; fi
script:
2020-07-04 20:46:01 +09:00
- if [ $IS_PYTHON = true ]; then tox -- -vv; fi
2018-07-24 21:00:47 +02:00
- if [ $IS_PYTHON = false ]; then npm test; fi
after_success:
2018-02-04 01:57:10 +09:00
- if [[ -e .coverage ]]; then codecov -e $TOXENV; fi