File tree Expand file tree Collapse file tree 2 files changed +24
-4
lines changed
Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 11{
2- "python.testing.pytestEnabled" : false ,
3- "python.testing.unittestEnabled " : true ,
2+ "python.testing.pytestEnabled" : true ,
3+ "python.terminal.activateEnvironment " : true ,
44 "editor.formatOnSave" : true ,
55 "modulename" : " ${workspaceFolderBasename}" ,
66 "distname" : " ${workspaceFolderBasename}" ,
7+ //"venv": "${env:UserProfile }/pygpsclient",
8+ "venv" : " ${env:HOME}/pygpsclient" ,
9+ "python.testing.pytestArgs" : [
10+ " tests"
11+ ],
12+ "C_Cpp.copilotHover" : " disabled" ,
13+ "chat.agent.enabled" : false ,
14+ "chat.commandCenter.enabled" : false ,
15+ "chat.notifyWindowOnConfirmation" : false ,
16+ "telemetry.feedback.enabled" : false ,
17+ "python.analysis.addHoverSummaries" : false ,
718}
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ dynamic = ["version"]
88authors = [{
name =
" semuadmin" ,
email =
" [email protected] " }]
99maintainers = [{
name =
" semuadmin" ,
email =
" [email protected] " }]
1010description = " RTCM3 protocol parser"
11- license = { file = " LICENSE" }
11+ license = " BSD-3-Clause"
12+ license-files = [" LICENSE" ]
1213readme = " README.md"
1314requires-python = " >=3.9"
1415classifiers = [
@@ -27,7 +28,6 @@ classifiers = [
2728 " Programming Language :: Python :: 3.11" ,
2829 " Programming Language :: Python :: 3.12" ,
2930 " Programming Language :: Python :: 3.13" ,
30- " License :: OSI Approved :: BSD License" ,
3131 " Topic :: Utilities" ,
3232 " Topic :: Software Development :: Libraries :: Python Modules" ,
3333 " Topic :: Scientific/Engineering :: GIS" ,
@@ -103,3 +103,12 @@ pythonpath = ["src"]
103103
104104[tool .coverage .run ]
105105source = [" src" ]
106+
107+ [tool .coverage .paths ]
108+ source = [" src" ]
109+
110+ [tool .coverage .report ]
111+ fail_under = 15
112+
113+ [tool .coverage .html ]
114+ directory = " htmlcov"
You can’t perform that action at this time.
0 commit comments