mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 19:31:51 +02:00
@@ -69,7 +69,6 @@ In order to generate the Sphinx documentation, run the following commands.
|
|||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
./venv/bin/python setup.py docs
|
|
||||||
cd docs
|
cd docs
|
||||||
make clean html SPHINXBUILD=../venv/bin/sphinx-build
|
make clean html SPHINXBUILD=../venv/bin/sphinx-build
|
||||||
|
|
||||||
|
|||||||
@@ -2,8 +2,7 @@
|
|||||||
zip_ok = false
|
zip_ok = false
|
||||||
|
|
||||||
[aliases]
|
[aliases]
|
||||||
dev = develop easy_install letsencrypt[testing]
|
dev = develop easy_install letsencrypt[testing,dev]
|
||||||
docs = develop easy_install letsencrypt[docs]
|
|
||||||
|
|
||||||
[nosetests]
|
[nosetests]
|
||||||
nocapture=1
|
nocapture=1
|
||||||
|
|||||||
@@ -36,7 +36,8 @@ install_requires = [
|
|||||||
'M2Crypto',
|
'M2Crypto',
|
||||||
]
|
]
|
||||||
|
|
||||||
docs_extras = [
|
dev_extras = [
|
||||||
|
'pylint>=1.4.0', # upstream #248
|
||||||
'repoze.sphinx.autointerface',
|
'repoze.sphinx.autointerface',
|
||||||
'Sphinx',
|
'Sphinx',
|
||||||
]
|
]
|
||||||
@@ -45,7 +46,6 @@ testing_extras = [
|
|||||||
'coverage',
|
'coverage',
|
||||||
'nose',
|
'nose',
|
||||||
'nosexcover',
|
'nosexcover',
|
||||||
'pylint>=1.4.0', # upstream #248
|
|
||||||
'tox',
|
'tox',
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -69,7 +69,7 @@ setup(
|
|||||||
tests_require=install_requires,
|
tests_require=install_requires,
|
||||||
test_suite='letsencrypt',
|
test_suite='letsencrypt',
|
||||||
extras_require={
|
extras_require={
|
||||||
'docs': docs_extras,
|
'dev': dev_extras,
|
||||||
'testing': testing_extras,
|
'testing': testing_extras,
|
||||||
},
|
},
|
||||||
entry_points={
|
entry_points={
|
||||||
|
|||||||
@@ -7,13 +7,13 @@ envlist = py26,py27,cover,lint
|
|||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
commands =
|
commands =
|
||||||
python setup.py dev
|
python setup.py develop easy_install letsencrypt[testing]
|
||||||
python setup.py test -q # -q does not suppress errors
|
python setup.py test -q # -q does not suppress errors
|
||||||
|
|
||||||
[testenv:cover]
|
[testenv:cover]
|
||||||
basepython = python2.7
|
basepython = python2.7
|
||||||
commands =
|
commands =
|
||||||
python setup.py dev
|
python setup.py develop easy_install letsencrypt[testing]
|
||||||
python setup.py nosetests --with-coverage --cover-min-percentage=66
|
python setup.py nosetests --with-coverage --cover-min-percentage=66
|
||||||
|
|
||||||
[testenv:lint]
|
[testenv:lint]
|
||||||
|
|||||||
Reference in New Issue
Block a user