Skip to content

Commit

Permalink
Merge pull request #19 from faust-streaming/fix/add-codecov-support
Browse files Browse the repository at this point in the history
fix: codecov added
  • Loading branch information
marcosschroh authored Nov 4, 2020
2 parents df678c8 + 2caf669 commit 49d3d6e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ faust/transport/_cython/*.c

# coverage
.coverage
coverage.xml
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

# Python Stream Processing Fork

![python versions](https://img.shields.io/badge/python-37%2037%2038-blue)
![version](https://img.shields.io/badge/version-0.1.0-green)
[![codecov](https://codecov.io/gh/faust-streaming/faust/branch/master/graph/badge.svg?token=QJFBYNN0JJ)](https://codecov.io/gh/faust-streaming/faust)

## Installation

`pip install faust-streaming`
Expand Down
1 change: 1 addition & 0 deletions scripts/coverage
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ fi
set -x

${PREFIX}coverage report --show-missing --skip-covered --fail-under=61
codecov --token=$CODECOV_TOKEN
11 changes: 2 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,15 +175,8 @@ def extras_require():
return {x: extras(x + ".txt") for x in BUNDLES}


# -*- Long Description -*-


if README.exists():
long_description = README.read_text(encoding="utf-8")
else:
long_description = "See http://pypi.org/project/{}".format(NAME)

# -*- %%% -*-
with open("README.md") as readme_file:
long_description = readme_file.read()


def do_setup(**kwargs):
Expand Down

0 comments on commit 49d3d6e

Please sign in to comment.