Fixed wrongly quoted variable in jq pattern.

This commit is contained in:
Patrick Lehmann
2025-11-13 13:33:20 +01:00
parent b04ceae7bb
commit 546bf3db8a
9 changed files with 17 additions and 20 deletions

View File

@@ -2,7 +2,7 @@
requires = [
"setuptools >= 80.0",
"wheel ~= 0.45",
"pyTooling ~= 8.7"
"pyTooling ~= 8.8"
]
build-backend = "setuptools.build_meta"
@@ -38,23 +38,21 @@ junit_xml = "report/typing/StaticTypingSummary.xml"
cobertura_xml_report = "report/typing"
[tool.pytest]
junit_xml = "report/unit/UnittestReportSummary.xml"
[tool.pyedaa-reports]
junit_xml = "report/unit/unittest.xml"
[tool.pytest.ini_options]
addopts = "--tb=native"
addopts = ["--tb=native"]
# Don't set 'python_classes = *' otherwise, pytest doesn't search for classes
# derived from unittest.Testcase
python_files = "*"
python_functions = "test_*"
python_files = ["*"]
python_functions = ["test_*"]
filterwarnings = [
"error::DeprecationWarning",
"error::PendingDeprecationWarning"
]
junit_xml = "report/unit/UnittestReportSummary.xml"
junit_logging = "all"
[tool.pyedaa-reports]
junit_xml = "report/unit/unittest.xml"
[tool.interrogate]
color = true
verbose = 1 # possible values: 0 (minimal output), 1 (-v), 2 (-vv)