File tree 5 files changed +8
-9
lines changed
5 files changed +8
-9
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 46
46
run : |
47
47
make test
48
48
make services-down
49
- - name : Push Coveralls
50
- run : |
51
- pip install -q coveralls coveralls[yaml]
52
- coveralls
49
+ - name : Upload coverage reports to Codecov
50
+ uses : codecov/codecov-action@v5
51
+ with :
52
+ token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ publish: clean install-test-requirements
45
45
uv publish
46
46
47
47
clean :
48
- rm -rf .coverage * .egg-info dist/ requirements.txt uv.lock || true
48
+ rm -rf * .egg-info dist/ requirements.txt uv.lock || true
49
49
find . -type d -name __pycache__ -exec rm -rf {} \; || true
50
50
51
51
.PHONY : clean publish safetest test setup develop lint-python test-python _services-up
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ mocket /mɔˈkɛt/
5
5
.. image :: https://github.com/mindflayer/python-mocket/actions/workflows/main.yml/badge.svg?branch=main
6
6
:target: https://github.com/mindflayer/python-mocket/actions?query=workflow%3A%22Mocket%27s+CI%22
7
7
8
- .. image :: https://coveralls .io/repos/ github/mindflayer/python-mocket/badge.svg?branch=main
9
- :target: https://coveralls .io/github/mindflayer/python-mocket?branch=main
8
+ .. image :: https://codecov .io/github/mindflayer/python-mocket/graph/ badge.svg?token=htRySebRBt
9
+ :target: https://codecov .io/github/mindflayer/python-mocket
10
10
11
11
.. image :: https://app.codacy.com/project/badge/Grade/6327640518ce42adaf59368217028f14
12
12
:target: https://www.codacy.com/gh/mindflayer/python-mocket/dashboard
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ exclude = [
88
88
testpaths = [
89
89
" tests" , " mocket" ,
90
90
]
91
- addopts = " --doctest-modules --cov=mocket --cov-report=term-missing --cov-append -v -x"
91
+ addopts = " --doctest-modules --cov=mocket --cov-report=xml --cov-report= term-missing --cov-append -v -x"
92
92
93
93
[tool .ruff ]
94
94
src = [" mocket" , " tests" ]
You can’t perform that action at this time.
0 commit comments