File tree Expand file tree Collapse file tree 7 files changed +31
-3
lines changed Expand file tree Collapse file tree 7 files changed +31
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ sdist: html
18
18
# Documentation
19
19
.PHONY : html
20
20
html :
21
- (cd docs && $( MAKE ) html)
21
+ tox -e docs
22
22
23
23
.PHONY : docclean
24
24
docclean :
Original file line number Diff line number Diff line change @@ -413,6 +413,8 @@ Syntax::
413
413
Path Management
414
414
===============
415
415
416
+ .. _command-add2virtualenv :
417
+
416
418
add2virtualenv
417
419
--------------
418
420
Original file line number Diff line number Diff line change
1
+ ==========
2
+ Glossary
3
+ ==========
4
+
5
+ .. glossary ::
6
+
7
+ project directory
8
+
9
+ Directory associated with a virtualenv, usually located elsewhere
10
+ and containing more permanent development artifacts such as local
11
+ source files, test data, etc. (see :ref: `variable-PROJECT_HOME `)
12
+
13
+ template
14
+
15
+ Input to :ref: `command-mkproject ` that configures the *project
16
+ directory * to contain default files. (see :ref: `plugins `)
Original file line number Diff line number Diff line change @@ -327,8 +327,7 @@ run in the same place as before.
327
327
- Implement suggestion by Van Lindberg to have
328
328
:ref: `VIRTUALENVWRAPPER_HOOK_DIR
329
329
<variable-VIRTUALENVWRAPPER_HOOK_DIR>` and
330
- :ref: `VIRTUALENVWRAPPER_LOG_DIR
331
- <variable-VIRTUALENVWRAPPER_LOG_DIR>` variables to control the
330
+ ``VIRTUALENVWRAPPER_LOG_DIR `` variables to control the
332
331
locations of hooks and logs.
333
332
- Enabled tab completion for :ref: `command-showvirtualenv `
334
333
(:bbissue: `78 `).
Original file line number Diff line number Diff line change @@ -181,6 +181,7 @@ Details
181
181
extensions
182
182
design
183
183
history
184
+ glossary
184
185
185
186
.. _references :
186
187
Original file line number Diff line number Diff line change @@ -72,3 +72,6 @@ virtualenvwrapper.post_deactivate_source =
72
72
user_scripts = virtualenvwrapper.user_scripts:post_deactivate_source
73
73
virtualenvwrapper.get_env_details =
74
74
user_scripts = virtualenvwrapper.user_scripts:get_env_details
75
+
76
+ [pbr]
77
+ warnerrors = true
Original file line number Diff line number Diff line change @@ -47,3 +47,10 @@ basepython=python2.7
47
47
setenv =
48
48
SHELL = /bin/ksh
49
49
commands = ksh ./tests/run_tests {envdir} []
50
+
51
+ [testenv:docs]
52
+ basepython =python2.7
53
+ deps =
54
+ -r{toxinidir}/requirements.txt
55
+ -r{toxinidir}/docs/requirements.txt
56
+ commands = python setup.py build_sphinx
You can’t perform that action at this time.
0 commit comments