removed support for multiple interpreters (2)

This commit is contained in:
Dirk Alders 2025-08-17 14:42:41 +02:00
parent ebe59a7b6e
commit e5282ac16a
2 changed files with 0 additions and 2 deletions

View File

@ -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

1
run.py
View File

@ -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__: