Skip to content

Commit

Permalink
fix buildout.cfg so that all necessary dependencies are present: tox …
Browse files Browse the repository at this point in the history
…and sphinx should be build
  • Loading branch information
loechel committed Jan 31, 2017
1 parent db9827b commit 1dc3fe5
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions buildout.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
[buildout]
develop = .
parts =
code-analysis
githook
interpreter
test
pytest
code-analysis
githook
tox
sphinx

versions = versions

[interpreter]
recipe = zc.recipe.egg
Expand All @@ -23,6 +27,17 @@ eggs =
pytest-flake8
pytest-isort
RestrictedPython
tox

[tox]
recipe = zc.recipe.egg
eggs =
tox

[sphinx]
recipe = zc.recipe.egg
eggs =
Sphinx

[code-analysis]
recipe = plone.recipe.codeanalysis[recommended]
Expand All @@ -34,5 +49,9 @@ flake8-max-complexity = 15
[githook]
recipe = plone.recipe.command
command =
echo "\nbin/pytest" >> .git/hooks/pre-commit
#echo "\nbin/pytest" >> .git/hooks/pre-commit
echo "\nbin/tox" >> .git/hooks/pre-commit
cat .git/hooks/pre-commit

[versions]
pycodestyle = 2.2.0

0 comments on commit 1dc3fe5

Please sign in to comment.