File tree Expand file tree Collapse file tree 5 files changed +22
-14
lines changed
Expand file tree Collapse file tree 5 files changed +22
-14
lines changed Original file line number Diff line number Diff line change 44 pull_request :
55 branches : [ master ]
66
7+
78jobs :
89 test :
910 runs-on : ubuntu-latest
2728
2829 - name : Run tox
2930 run : tox
31+
32+ - name : Code Coverage Summary Report
33+ uses : irongut/CodeCoverageSummary@v1.3.0
34+ with :
35+ filename : coverage.xml
36+ badge : true
37+ format : markdown
38+ thresholds : ' 80 100'
39+ output : ' both'
40+ fail_below_min : ' true'
41+ indicators : ' true'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33> Modern Python logging handler for Grafana Loki
44
55[ ![ PyPI version] ( https://img.shields.io/pypi/v/python-logging-loki-v2.svg )] ( https://pypi.org/project/python-logging-loki-v2/ )
6+ ![ CI] ( https://github.com/RomanR-dev/python-logging-loki/blob/master/.github/workflows/test.yml/badge.svg )
7+ ![ Code Coverage] ( https://img.shields.io/badge/Code%20Coverage-97%25-yellow?style=flat )
8+
69[ ![ Python] ( https://img.shields.io/badge/python-3.9+-blue.svg )] ( https://www.python.org/ )
710
11+
812Send Python logs directly to [ Grafana Loki] ( https://grafana.com/loki ) with minimal configuration.
913
1014---
Original file line number Diff line number Diff line change 1919 python_requires = ">=3.11" ,
2020 install_requires = ["rfc3339>=6.1" , "requests" ],
2121 classifiers = [
22- "Development Status :: 4 - Beta " ,
22+ "Development Status :: 4 - Release " ,
2323 "Intended Audience :: Developers" ,
2424 "License :: OSI Approved :: MIT License" ,
2525 "Operating System :: OS Independent" ,
2626 "Programming Language :: Python" ,
27- "Programming Language :: Python :: 3" ,
28- "Programming Language :: Python :: 3.6" ,
29- "Programming Language :: Python :: 3.7" ,
30- "Programming Language :: Python :: 3.8" ,
27+ "Programming Language :: Python :: 3.11" ,
3128 "Topic :: Software Development :: Libraries :: Python Modules" ,
3229 "Topic :: System :: Logging" ,
3330 "Topic :: Internet :: WWW/HTTP" ,
Original file line number Diff line number Diff line change @@ -11,7 +11,10 @@ deps =
1111 pytest
1212 coverage
1313 freezegun
14- commands = coverage run -m pytest []
14+ commands =
15+ coverage run -m pytest []
16+ coverage report
17+ coverage xml
1518
1619[testenv:ruff]
1720skip_install = true
You can’t perform that action at this time.
0 commit comments