Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
45 lines (39 sloc) 865 Bytes
language: python
dist: xenial
sudo: false
cache:
pip: true
branches:
only:
- master
# Tags
- /^(\d+\.)+\d+(\.\S+)?$/
matrix:
fast_finish: true
include:
- python: '3.5'
- python: '3.6'
- python: '3.7'
name: 'Lint, Coverage'
before_script:
- pip install flake8 coverage mypy
script:
- find -name '*.md' | xargs .github/lint-markdown.sh
- flake8
- mypy pdoc
- time catchsegv coverage run setup.py test
after_success:
- bash <(curl -s https://codecov.io/bash)
- python: '3.6'
name: 'Docs'
stage: deploy
script:
- doc/build.sh
after_success:
- if [ "$TRAVIS_BRANCH" = "$TRAVIS_TAG" ]; then bash .github/deploy-gh-pages.sh; fi
before_install:
- set -e
install:
- pip install .
script:
- catchsegv python setup.py test
You can’t perform that action at this time.