Add docs testenv and proper gitignores

This commit is contained in:
Ian Cordasco 2015-07-05 11:57:39 -05:00
parent ea5638f294
commit 4d4f093f7b
2 changed files with 12 additions and 0 deletions

6
.gitignore vendored
View File

@ -1 +1,7 @@
*.pyc
.coverage
.tox
*.egg-info
build/
doc/_build/
dist/

View File

@ -33,6 +33,12 @@ commands =
python setup.py sdist bdist_wheel
twine upload {posargs:dist/*}
[testenv:docs]
deps =
sphinx>=1.3.0
commands =
sphinx-build -E -c docs -b html docs/ docs/_build/html
[pytest]
addopts = -q
norecursedirs = *.egg .git .* _*