From e5282ac16addbe4d6e59f4a7accaac6b73b469ee Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 17 Aug 2025 14:42:41 +0200 Subject: [PATCH] removed support for multiple interpreters (2) --- jsonlog.py | 1 - run.py | 1 - 2 files changed, 2 deletions(-) diff --git a/jsonlog.py b/jsonlog.py index 2aa7552..d7f0733 100644 --- a/jsonlog.py +++ b/jsonlog.py @@ -60,7 +60,6 @@ TOBI_NAME = "Name" TOBI_STATE = "State" TOBI_STATE_RELEASED = 'Released' TOBI_STATE_IN_DEVELOPMENT = 'In development' -TOBI_SUPP_INTERP = "Supported Interpreters" TOBI_VERSION = "Version" # # SUBKEYS FOR MAIN_KEY_TESTRUNS diff --git a/run.py b/run.py index af447ce..c638bf4 100644 --- a/run.py +++ b/run.py @@ -221,7 +221,6 @@ def unittest_prepare(ut_folder): testobject_info[jsonlog.TOBI_NAME] = config.lib.__name__ testobject_info[jsonlog.TOBI_VERSION] = jsonlog.module_uid(config.lib.__path__[0]) testobject_info[jsonlog.TOBI_DESCRIPTION] = config.lib.__DESCRIPTION__ - testobject_info[jsonlog.TOBI_SUPP_INTERP] = ', '.join(['python%d' % vers for vers in config.lib.__INTERPRETER__]) testobject_info[jsonlog.TOBI_STATE] = jsonlog.TOBI_STATE_RELEASED if config.release_unittest_version == unittest_info[jsonlog.UTEI_VERSION] else jsonlog.TOBI_STATE_IN_DEVELOPMENT testobject_info[jsonlog.TOBI_DEPENDENCIES] = [] for dependency in config.lib.__DEPENDENCIES__: