diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-05 01:17:41 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-05 01:17:41 +0900 |
commit | c85335941775dadf386bc13eda81e2dfb8b70c2a (patch) | |
tree | a5c769dba90711c94c02006eb0a69dceda63e10d | |
parent | 162a0048e525a8d5957a5e29b5e672ecebab5118 (diff) | |
download | sphinx-git-c85335941775dadf386bc13eda81e2dfb8b70c2a.tar.gz |
tox.ini: Clean up
-rw-r--r-- | .travis.yml | 28 |
1 files changed, 5 insertions, 23 deletions
diff --git a/.travis.yml b/.travis.yml index d7162104f..4ce005276 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,29 +1,11 @@ os: linux dist: xenial -language: python -cache: pip - -env: - global: - - PYTHONFAULTHANDLER=x - - SKIP_LATEX_BUILD=1 - - IS_PYTHON=true - -jobs: - include: - - language: node_js - node_js: '10.7' - env: IS_PYTHON=false - services: xvfb +language: node_js +node_js: '10.7' +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 + - npm install script: - - if [ $IS_PYTHON = true ]; then tox -- -vv; fi - - if [ $IS_PYTHON = false ]; then npm test; fi - -after_success: - - if [[ -e .coverage ]]; then codecov -e $TOXENV; fi + - npm test |