Skip to content

Commit

Permalink
Added a configuration file for coveralls.io
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnerpeer committed Aug 5, 2018
1 parent d42037b commit ce7d5e5
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 4 deletions.
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
parallel: true # if the CI is running your build in parallel
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ python:

# command to install dependencies
install:
- python setup.py -q install
- pip install coverage
- pip install coveralls

# command to run tests
script:
- python setup.py test
- coverage run setup.py test

after_success:
- coveralls
37 changes: 35 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,42 @@ Create, update or convert docstrings in existing Python files, managing several

Project Status
--------------
.. image:: https://travis-ci.org/dadadel/pyment.svg?branch=master

**Build Status**

.. image:: https://travis-ci.org/dadadel/pyment.svg?branch=master
:target: https://travis-ci.org/dadadel/pyment.svg?branch=master
:alt: Linux tests (TravisCI)
:alt: Linux tests (TravisCI)


**Supported Versions**

.. image:: https://img.shields.io/badge/python-2.7-blue.svg
:target: https://img.shields.io/badge/python-2.7-blue.svg
:alt: Supports Python27
.. image:: https://img.shields.io/badge/python-3.2-blue.svg
:target: https://img.shields.io/badge/python-3.2-blue.svg
:alt: Supports Python32
.. image:: https://img.shields.io/badge/python-3.3-blue.svg
:target: https://img.shields.io/badge/python-3.3-blue.svg
:alt: Supports Python33
.. image:: https://img.shields.io/badge/python-3.4-blue.svg
:target: https://img.shields.io/badge/python-3.4-blue.svg
:alt: Supports Python34
.. image:: https://img.shields.io/badge/python-3.5-blue.svg
:target: https://img.shields.io/badge/python-3.5-blue.svg
:alt: Supports Python35
.. image:: https://img.shields.io/badge/python-3.6-blue.svg
:target: https://img.shields.io/badge/python-3.6-blue.svg
:alt: Supports Python36


**Code Coverage**

.. image:: https://coveralls.io/repos/github/wagnerpeer/pyment/badge.svg?branch=master
:target: https://coveralls.io/github/wagnerpeer/pyment?branch=master
:alt: Test coverage (Coveralls)



Description
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ description-file = README.rst

[bdist_wheel]
universal=1

[coverage:run]
source = tests

0 comments on commit ce7d5e5

Please sign in to comment.