File tree 3 files changed +33
-1
lines changed
3 files changed +33
-1
lines changed Original file line number Diff line number Diff line change
1
+ [run]
2
+ branch = true
3
+ source = types_linq
4
+ omit = types_linq/more_typing.py
5
+
6
+ [report]
7
+ exclude_lines =
8
+ pragma: no cover
9
+ if TYPE_CHECKING:
10
+ fail_under = 100
Original file line number Diff line number Diff line change 33
33
- name : Test with pytest
34
34
run : |
35
35
pytest
36
+
37
+ coverage :
38
+ needs : build
39
+ runs-on : ubuntu-latest
40
+
41
+ steps :
42
+ - uses : actions/checkout@v2
43
+ - name : Set up Python 3.8
44
+ uses : actions/setup-python@v2
45
+ with :
46
+ python-version : 3.8
47
+ - name : Install dependencies
48
+ run : |
49
+ python -m pip install --upgrade pip
50
+ pip install pytest coverage
51
+ - name : Install project
52
+ run : |
53
+ pip install .
54
+ - name : Coverage report
55
+ run : |
56
+ coverage run -m pytest
57
+ coverage report -m
Original file line number Diff line number Diff line change 1
1
# types-linq
2
2
3
- ![ Python] ( https://img.shields.io/badge/python-3.7%2B-blue.svg ) [ ![ pypi] ( https://img.shields.io/pypi/v/types-linq )] ( https://pypi.org/project/types-linq/ ) [ ![ pytest] ( https://github.com/cleoold/types-linq/workflows/pytest/badge.svg )] ( https://github.com/cleoold/types-linq/actions )
3
+ ![ Python] ( https://img.shields.io/badge/python-3.7%2B-blue.svg ) [ ![ pypi] ( https://img.shields.io/pypi/v/types-linq )] ( https://pypi.org/project/types-linq/ ) [ ![ pytest] ( https://github.com/cleoold/types-linq/workflows/pytest/badge.svg )] ( https://github.com/cleoold/types-linq/actions?query=workflow%3Apytest )
4
4
5
5
This is an attempt to implement linq methods seen in .NET ([ link] ( https://docs.microsoft.com/en-us/dotnet/api/system.linq.enumerable?view=net-5.0 ) ). Currently WIP.
6
6
You can’t perform that action at this time.
0 commit comments