mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-08 07:10:31 +00:00
3c6e0e4015
This forks some of the pydocstyle AST parser into out mapper. Eventually, some of the other operations such as parsing arguments and performing full name lookup can be moved in as well. For now, this is not doing any extra assignment tracking/etc, several of these operations will just throw this information out. Refs #99
24 lines
361 B
YAML
24 lines
361 B
YAML
language: python
|
|
python:
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- python: 2.7
|
|
script: tox -e docs
|
|
- python: 2.7
|
|
script: tox -e lint
|
|
install:
|
|
- pip install tox-travis
|
|
script:
|
|
- tox
|
|
notifications:
|
|
slack:
|
|
rooms:
|
|
- readthedocs:y3hjODOi7EIz1JAbD1Zb41sz#random
|
|
on_success: change
|
|
on_failure: always
|