🧪4️⃣ test: level 4 gpt turbo stays

This commit is contained in:
Florian Hönicke
2023-05-02 23:24:24 +02:00
parent e4c680d20c
commit 0fdf5edd2c
2 changed files with 9 additions and 6 deletions

View File

@@ -547,8 +547,11 @@ Test scenario:
# filter out complete package lists
packages_list = [
packages for packages in packages_list if all([
is_package_on_pypi(pkg) # all packages must be on pypi
and pkg not in BLACKLISTED_PACKAGES # no package is allowed to be blacklisted
pkg == 'gpt_3_5_turbo'
or (
is_package_on_pypi(pkg) # all packages must be on pypi or it is gpt_3_5_turbo
and pkg not in BLACKLISTED_PACKAGES # no package is allowed to be blacklisted
)
for pkg in packages
])
]