File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 32
32
poetry run mypy -p flake8_force_keyword_arguments
33
33
- name : Test with pytest
34
34
run : |
35
- poetry run pytest tests --cov=./ flake8_force_keyword_arguments --cov-report= xml
35
+ poetry run pytest tests --cov flake8_force_keyword_arguments --cov-config pyproject.toml --cov- report xml
36
36
- name : " Upload coverage to Codecov"
37
37
uses : codecov/codecov-action@v2
38
38
with :
Original file line number Diff line number Diff line change 1
1
# flake8-force-keyword-arguments
2
2
3
- [ ![ PyPI] ( https://img.shields.io/pypi/v/flake8-force-keyword-arguments?label=pypi&logo=python&style=flat-square )] ( https://pypi.org/project/flake8-force-keyword-arguments/ )
3
+ [ ![ PyPI] ( https://img.shields.io/pypi/v/flake8-force-keyword-arguments?label=pypi&logo=pypi&style=flat-square )] ( https://pypi.org/project/flake8-force-keyword-arguments/ )
4
+ [ ![ PyPI - Wheel] ( https://img.shields.io/pypi/wheel/flake8-force-keyword-arguments?style=flat-square&logo=pypi )] ( https://pypi.org/project/flake8-force-keyword-arguments/ )
4
5
[ ![ Python Version] ( https://img.shields.io/pypi/pyversions/flake8-force-keyword-arguments.svg?style=flat-square&logo=python )] ( https://pypi.org/project/flake8-force-keyword-arguments/ )
6
+ [ ![ PyPI - Implementation] ( https://img.shields.io/pypi/implementation/flake8-force-keyword-arguments?style=flat-square&logo=python )] ( (https://pypi.org/project/flake8-force-keyword-arguments/) )
5
7
![ Codecov] ( https://img.shields.io/codecov/c/gh/isac322/flake8-force-keyword-arguments?style=flat-square&logo=codecov )
6
8
![ GitHub last commit (branch)] ( https://img.shields.io/github/last-commit/isac322/flake8-force-keyword-arguments/master?logo=github&style=flat-square )
7
9
![ GitHub Workflow Status (branch)] ( https://img.shields.io/github/workflow/status/isac322/flake8-force-keyword-arguments/CI/master?logo=github&style=flat-square )
Original file line number Diff line number Diff line change @@ -95,3 +95,13 @@ module = [
95
95
" marisa_trie"
96
96
]
97
97
ignore_missing_imports = true
98
+
99
+
100
+ [tool .coverage .run ]
101
+ omit = [' */__init__.py' ]
102
+
103
+ # [tool.coverage.paths]
104
+ # source = ['flake8_force_keyword_arguments']
105
+
106
+ [tool .coverage .report ]
107
+ exclude_lines = [' pragma: no cover' ]
You can’t perform that action at this time.
0 commit comments