Merge pull request #155 from YunoHost/actions/black

Format Python code with Black
This commit is contained in:
Alexandre Aubin 2024-06-23 16:29:39 +02:00 committed by GitHub
commit e4b8ccb352
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2239,11 +2239,17 @@ class Manifest(TestSuite):
if "apt" in list(resources.keys()): if "apt" in list(resources.keys()):
packages = str(list(resources["apt"].get("packages"))) packages = str(list(resources["apt"].get("packages")))
if "php7.4-" in packages: if "php7.4-" in packages:
yield Warning("The app currently runs on php7.4 which is pretty old (unsupported by the PHP group since January 2023). Ideally, upgrade it to at least php8.2.") yield Warning(
"The app currently runs on php7.4 which is pretty old (unsupported by the PHP group since January 2023). Ideally, upgrade it to at least php8.2."
)
elif "php8.0-" in packages: elif "php8.0-" in packages:
yield Warning("The app currently runs on php8.0 which is pretty old (unsupported by the PHP group since January 2024). Ideally, upgrade it to at least php8.2.") yield Warning(
"The app currently runs on php8.0 which is pretty old (unsupported by the PHP group since January 2024). Ideally, upgrade it to at least php8.2."
)
elif "php8.1-" in packages: elif "php8.1-" in packages:
yield Info("The app currently runs on php8.1 which is deprecated since January 2024. Ideally, upgrade it to at least php8.2.") yield Info(
"The app currently runs on php8.1 which is deprecated since January 2024. Ideally, upgrade it to at least php8.2."
)
@test() @test()
def resource_consistency(self): def resource_consistency(self):