Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
flask-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
flask-admin
Commits
fd874d08
Commit
fd874d08
authored
Jun 22, 2017
by
Paul Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add docs build to tox, remove sphinx reqs from other tests
parent
453ef8a4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
5 deletions
+13
-5
.travis.yml
.travis.yml
+2
-0
README.rst
README.rst
+1
-2
requirements-dev.txt
requirements-dev.txt
+0
-2
tox.ini
tox.ini
+10
-1
No files found.
.travis.yml
View file @
fd874d08
...
@@ -12,6 +12,8 @@ matrix:
...
@@ -12,6 +12,8 @@ matrix:
env
:
TOX_ENV=py27-WTForms2
env
:
TOX_ENV=py27-WTForms2
-
python
:
2.7
-
python
:
2.7
env
:
TOX_ENV=flake8
env
:
TOX_ENV=flake8
-
python
:
2.7
env
:
TOX_ENV=docs-html
-
python
:
3.3
-
python
:
3.3
env
:
TOX_ENV=py33-WTForms1
env
:
TOX_ENV=py33-WTForms1
-
python
:
3.3
-
python
:
3.3
...
...
README.rst
View file @
fd874d08
...
@@ -56,8 +56,7 @@ if you think of anything else that should be included, then please make the chan
...
@@ -56,8 +56,7 @@ if you think of anything else that should be included, then please make the chan
To build the docs in your local environment, from the project directory::
To build the docs in your local environment, from the project directory::
pip install -r requirements-dev.txt
tox -e docs-html
sudo make html
And if you want to preview any *.rst* snippets that you may want to contribute, go to `http://rst.ninjs.org/ <http://rst.ninjs.org/>`_.
And if you want to preview any *.rst* snippets that you may want to contribute, go to `http://rst.ninjs.org/ <http://rst.ninjs.org/>`_.
...
...
requirements-dev.txt
View file @
fd874d08
...
@@ -12,7 +12,5 @@ shapely==1.5.9
...
@@ -12,7 +12,5 @@ shapely==1.5.9
geoalchemy2
geoalchemy2
psycopg2
psycopg2
nose
nose
sphinx
sphinx-intl
coveralls
coveralls
pylint
pylint
tox.ini
View file @
fd874d08
[tox]
[tox]
envlist
=
py{26,27,33,34,35,36}-WTForms{1,2},flake8
envlist
=
py{26,27,33,34,35,36}-WTForms{1,2}
flake8
docs-html
skipsdist
=
true
skipsdist
=
true
skip_missing_interpreters
=
true
skip_missing_interpreters
=
true
...
@@ -19,3 +22,9 @@ commands =
...
@@ -19,3 +22,9 @@ commands =
[testenv:flake8]
[testenv:flake8]
deps
=
flake8
deps
=
flake8
commands
=
flake8 flask_admin
commands
=
flake8 flask_admin
[testenv:docs-html]
deps
=
sphinx
sphinx-intl
commands
=
sphinx-build -b html -d build/doctrees doc build/html
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment