plone / plone.recipe.codeanalysis

provides static code analysis for Buildout-based Python projects, including flake8, JSHint, CSS Lint, and other code checks
https://pypi.org/project/plone.recipe.codeanalysis/
11 stars 5 forks source link

Broken tests #167

Closed gforcada closed 8 years ago

gforcada commented 8 years ago

Travis is failing on master: https://travis-ci.org/plone/plone.recipe.codeanalysis/jobs/90321940

Seems that the last release of flake8-quotes broke it (?).

On one hand we are testing on test_flake8.py code that is not within p.r.codeanalysis but instead on flake8 plugins (flake8-quotes just being one of them).

On the other hand we are not pinning a version thus being exposed to these kind of failures.

I would say that we have to do both:

Opinions?

gforcada commented 8 years ago

Pinning everything seems to not be enough: https://github.com/plone/plone.recipe.codeanalysis/pull/168

tisto commented 8 years ago

Sounds good. +1

gforcada commented 8 years ago

Both things done!