Skip to content

Commit

Permalink
Fix coverage report generation
Browse files Browse the repository at this point in the history
Seems that on CI it tries to open the HTML report and idles until Travis stops it.
  • Loading branch information
gforcada committed Aug 21, 2017
1 parent 11d0fc6 commit 0f58a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ script:
- bin/code-analysis
- bin/test
after_success:
- bin/createcoverage run bin/test
- bin/createcoverage -d htmlcov
- coveralls
after_failure:
- bin/flake8 --version
Expand Down

1 comment on commit 0f58a56

@jenkins-plone-org
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gforcada Jenkins CI reporting about code analysis
See the full report here: http://jenkins.plone.org/job/package-plone.recipe.codeanalysis/25/violations

plone/recipe/codeanalysis/analyser.py:59:9: T003 print function found.
plone/recipe/codeanalysis/analyser.py:66:13: T003 print function found.
plone/recipe/codeanalysis/analyser.py:157:35: C812 missing trailing comma
plone/recipe/codeanalysis/analyser.py:190:77: C812 missing trailing comma
plone/recipe/codeanalysis/analyser.py:201:75: C812 missing trailing comma
plone/recipe/codeanalysis/analyser.py:206:60: C812 missing trailing comma
plone/recipe/codeanalysis/clean_lines.py:24:10: C812 missing trailing comma
plone/recipe/codeanalysis/clean_lines.py:55:63: C812 missing trailing comma
plone/recipe/codeanalysis/clean_lines.py:64:59: C812 missing trailing comma
plone/recipe/codeanalysis/check_manifest.py:21:17: C812 missing trailing comma
plone/recipe/codeanalysis/__init__.py:40:20: C812 missing trailing comma
plone/recipe/codeanalysis/__init__.py:87:74: C812 missing trailing comma
plone/recipe/codeanalysis/__init__.py:96:70: C812 missing trailing comma
plone/recipe/codeanalysis/__init__.py:97:14: C812 missing trailing comma
plone/recipe/codeanalysis/__init__.py:155:32: C812 missing trailing comma
plone/recipe/codeanalysis/__init__.py:176:13: T003 print function found.
plone/recipe/codeanalysis/__init__.py:191:9: T003 print function found.
plone/recipe/codeanalysis/__init__.py:200:9: T003 print function found.
plone/recipe/codeanalysis/__init__.py:248:9: T003 print function found.
plone/recipe/codeanalysis/flake8.py:23:32: C812 missing trailing comma
plone/recipe/codeanalysis/flake8.py:35:36: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_jshint.py:113:29: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_jshint.py:148:37: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_check_manifest.py:24:42: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_check_manifest.py:29:37: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_check_manifest.py:35:75: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_check_manifest.py:40:67: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_check_manifest.py:52:67: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_jscs.py:82:36: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_csslint.py:24:0: P103 other string does contain unindexed parameters
plone/recipe/codeanalysis/tests/test_flake8.py:80:36: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_flake8.py:105:53: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_flake8.py:118:53: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_flake8.py:128:45: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_i18ndude.py:70:36: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_script.py:76:28: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_script.py:86:27: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_script.py:92:28: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_recipe.py:51:20: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_recipe.py:64:22: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_recipe.py:68:21: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_recipe.py:83:22: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_recipe.py:107:78: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_recipe.py:139:32: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_recipe.py:152:60: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_recipe.py:160:32: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_clean_lines.py:43:36: C812 missing trailing comma
plone/recipe/codeanalysis/tests/test_clean_lines.py:62:36: C812 missing trailing comma

Follow these instructions to reproduce it locally.

Please sign in to comment.