Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Bug 1104068 - Added a test job to test building the docs. #3043

Merged
merged 1 commit into from Jan 30, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -8,6 +8,7 @@ env:
matrix:
- TOXENV=py26
- TOXENV=flake8
- TOXENV=docs
global:
- DJANGO_SETTINGS_MODULE=settings_travis
- DEBIAN_FRONTEND=noninteractive
Expand Down
14 changes: 6 additions & 8 deletions README.rst
Expand Up @@ -21,26 +21,24 @@ Development
===========

:Code: https://github.com/mozilla/kuma
:Issues: http://mzl.la/mdn_backlog (Product)

https://github.com/mozilla/kuma/issues?state=open (Engineering)

:Issues: http://mzl.la/mdn_backlog (Product)
https://prs.paas.allizom.org/mozilla:kuma,kuma-lib,kumascript,mozhacks (PR Queue)

:Dev Docs: https://kuma.readthedocs.org/en/latest/installation-vagrant.html

:CI Server: https://travis-ci.org/mozilla/kuma

:Mailing list: https://lists.mozilla.org/listinfo/dev-mdn
:IRC: irc://irc.mozilla.org/mdndev

:IRC: irc://irc.mozilla.org/mdndev
http://logs.glob.uno/?c=mozilla%23mdndev (logs)
:Servers: http://mzl.la/whats-deployed (What's Deployed)

:Servers: http://mzl.la/whats-deployed (What's Deployed)
https://developer-dev.allizom.org/ (dev)

https://developer.allizom.org/ (stage)

https://developer.mozilla.org/ (prod)


Getting Started
===============

Expand Down
1 change: 0 additions & 1 deletion docs/index.rst
Expand Up @@ -14,7 +14,6 @@ Contents:
search

development
configuration
migrations
localization
ckeditor
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py26,flake8
envlist = py26, flake8, docs
skipsdist = True

[testenv:py26]
Expand All @@ -21,6 +21,11 @@ basepython = python2.6
deps = flake8
commands = flake8 kuma

[testenv:docs]
basepython = python2.6
deps = -rrequirements/docs.txt
commands = sphinx-build -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html

[flake8]
exclude=**/migrations/**,.tox,*.egg,vendor
ignore=E501