Merge pull request #234 from kuba/travis

No pylint in py2.6 tox
This commit is contained in:
James Kasten 2015-02-07 14:09:38 -08:00
commit 12d3493812
4 changed files with 6 additions and 8 deletions

View file

@ -69,7 +69,6 @@ In order to generate the Sphinx documentation, run the following commands.
::
./venv/bin/python setup.py docs
cd docs
make clean html SPHINXBUILD=../venv/bin/sphinx-build

View file

@ -2,8 +2,7 @@
zip_ok = false
[aliases]
dev = develop easy_install letsencrypt[testing]
docs = develop easy_install letsencrypt[docs]
dev = develop easy_install letsencrypt[testing,dev]
[nosetests]
nocapture=1

View file

@ -36,7 +36,8 @@ install_requires = [
'M2Crypto',
]
docs_extras = [
dev_extras = [
'pylint>=1.4.0', # upstream #248
'repoze.sphinx.autointerface',
'Sphinx',
]
@ -45,7 +46,6 @@ testing_extras = [
'coverage',
'nose',
'nosexcover',
'pylint>=1.4.0', # upstream #248
'tox',
]
@ -69,7 +69,7 @@ setup(
tests_require=install_requires,
test_suite='letsencrypt',
extras_require={
'docs': docs_extras,
'dev': dev_extras,
'testing': testing_extras,
},
entry_points={

View file

@ -7,13 +7,13 @@ envlist = py26,py27,cover,lint
[testenv]
commands =
python setup.py dev
python setup.py develop easy_install letsencrypt[testing]
python setup.py test -q # -q does not suppress errors
[testenv:cover]
basepython = python2.7
commands =
python setup.py dev
python setup.py develop easy_install letsencrypt[testing]
python setup.py nosetests --with-coverage --cover-min-percentage=66
[testenv:lint]