File tree Expand file tree Collapse file tree 2 files changed +25
-6
lines changed
Expand file tree Collapse file tree 2 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 11wheel >= 0.40.0
2- twine
2+ twine >= 4.0.2
Original file line number Diff line number Diff line change 11[build-system ]
22requires = [
3- " pyTooling >= 4 .0.0" ,
4- " setuptools >= 68.0 .0" ,
5- " wheel >= 0.40 .0"
3+ " setuptools >= 68 .0.0" ,
4+ " wheel >= 0.40 .0" ,
5+ " pyTooling >= 5.0 .0"
66]
77build-backend = " setuptools.build_meta"
88
99[tool .black ]
1010line-length = 120
1111
12+ [tool .mypy ]
13+ python_version = " 3.11"
14+ namespace_packages = true
15+
16+ pretty = true
17+ show_error_context = true
18+
19+ html_report = " report/typing"
20+
1221[tool .pytest .ini_options ]
1322# Don't set 'python_classes = *' otherwise, pytest doesn't search for classes
1423# derived from unittest.Testcase
1524python_files = " *"
1625python_functions = " test_*"
26+ filterwarnings = [
27+ " error::DeprecationWarning" ,
28+ " error::PendingDeprecationWarning"
29+ ]
1730
1831[tool .coverage .run ]
1932branch = true
2033omit = [
2134 " *site-packages*" ,
22- " setup.py"
35+ " setup.py" ,
36+ " tests/*"
2337]
2438
2539[tool .coverage .report ]
26- skip_covered = true
40+ skip_covered = false
2741skip_empty = true
2842exclude_lines = [
43+ " pragma: no cover" ,
2944 " raise NotImplementedError"
3045]
46+ omit = [
47+ " tests/*"
48+ ]
3149
3250[tool .coverage .html ]
3351directory = " report/coverage/html"
52+ title =" Code Coverage of pySystemRDLModel"
3453
3554[tool .coverage .xml ]
3655output = " report/coverage/coverage.xml"
You can’t perform that action at this time.
0 commit comments