Skip to content

Commit

Permalink
Merge branch 'hotfix/0.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosgoce committed Mar 18, 2015
2 parents 9d023f9 + ea147ee commit 8168a7e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
19 changes: 14 additions & 5 deletions README.rst
Expand Up @@ -3,12 +3,21 @@ flake8-junit-report
Simple tool that converts a flake8 file to junit format.
Use it on your CI server to see the flake8 failures with ease.

.. image:: https://travis-ci.org/initios/flake8-junit-report.svg?branch=develop
:target: https://travis-ci.org/initios/flake8-junit-report
.. image:: https://coveralls.io/repos/initios/flake8-junit-report/badge.svg
:target: https://coveralls.io/r/initios/flake8-junit-report
.. image:: https://img.shields.io/badge/LICENSE-BSD%203--Clause-brightgreen.svg

.. list-table::

* - Master
- .. image:: https://travis-ci.org/initios/flake8-junit-report.svg?branch=master
:target: https://travis-ci.org/initios/flake8-junit-report
- .. image:: https://coveralls.io/repos/initios/flake8-junit-report/badge.svg?branch=master
:target: https://coveralls.io/r/initios/flake8-junit-report?branch=master
* - Develop
- .. image:: https://travis-ci.org/initios/flake8-junit-report.svg?branch=develop
:target: https://travis-ci.org/initios/flake8-junit-report
- .. image:: https://coveralls.io/repos/initios/flake8-junit-report/badge.svg?branch=develop
:target: https://coveralls.io/r/initios/flake8-junit-report?branch=develop

Usage
-----
Create your flake8 file as usual:
Expand All @@ -24,7 +33,7 @@ Convert it to JUnit format:
$ junit_conversor flake8.txt flake8_junit.xml
Running the tests
-----
-----------------

.. code:: shell-session
Expand Down
2 changes: 1 addition & 1 deletion junit_conversor/__about__.py
@@ -1,6 +1,6 @@
__title__ = 'flake8-junit-report'
__summary__ = 'Simple tool that converts a flake8 file to junit format'
__version__ = '0.0.1'
__version__ = '0.0.2'
__license__ = 'BSD 3-Clause License'
__uri__ = 'https://github.com/initios/flake8-junit-report'
__author__ = 'Carlos Goce'
Expand Down
3 changes: 0 additions & 3 deletions junit_conversor/__init__.py
Expand Up @@ -7,9 +7,6 @@ def _parse(file_name):
parsed = []

for line in lines:
print("antes")
print(file_name)
print(line)
splitted = line.split(":")
parsed.append({
'file': splitted[0].strip(),
Expand Down

0 comments on commit 8168a7e

Please sign in to comment.