mirror of
https://github.com/vale981/releases
synced 2025-03-04 09:11:41 -05:00
24 lines
543 B
YAML
24 lines
543 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "pypy"
|
|
#- "pypy3" # Looks like Sphinx (as of 1.4.1) is not pypy3 compat
|
|
env:
|
|
- SPHINX=">=1.3,<1.4"
|
|
- SPHINX=">=1.4,<1.5"
|
|
- SPHINX=">=1.5,<1.6"
|
|
- SPHINX=">=1.6,<1.7"
|
|
- SPHINX=">=1.7,<1.8"
|
|
install:
|
|
- pip install -r dev-requirements.txt
|
|
- pip install "sphinx$SPHINX"
|
|
script:
|
|
# Primary test suite
|
|
- inv test
|
|
# Integration-level test suite (hard to reliably test full stack in-code :()
|
|
- inv test -o --tests=integration
|
|
# Docs sanity check
|
|
- inv docs
|