From fb244bf003b8e8d4ec5376e3685bb0106918e917 Mon Sep 17 00:00:00 2001 From: csteiner <47841949+clintonsteiner@users.noreply.github.com> Date: Fri, 20 Dec 2024 09:20:28 -0600 Subject: [PATCH] Update python.adoc due to nosetest and Cobertura EOL statuses (#7769) Update python.adoc remove nosetest and Cobertura references due to EOL status Cobertura is deprecated and no longer in support Same with nosetests and its successor nose2 Instead - steer peoples towards using pytest --- content/solutions/python.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/solutions/python.adoc b/content/solutions/python.adoc index 192358c02d15..cf8ec846721e 100644 --- a/content/solutions/python.adoc +++ b/content/solutions/python.adoc @@ -10,9 +10,9 @@ integration and delivery. In the Python ecosystem there are tools which can be integrated into Jenkins for testing/reporting such as: -* link:https://github.com/nose-devs/nose2[nose2] and link:https://docs.pytest.org/en/latest[pytest] +* link:link:https://docs.pytest.org/en/latest[pytest] for executing unit tests and generating JUnit-compatible XML test reports _and_ - plugin:cobertura[Cobertura]-compatible + plugin:coverage[Coverage]-compatible code coverage reports.