From 613d6835da6f2d85d28fa4e634bbaa021b302775 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Diot?= Date: Mon, 25 Mar 2024 08:40:46 +0000 Subject: [PATCH] Ignore download-pro-plugins in db tests to avoid failing with dev and testing versions --- tests/core/db/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/db/main.py b/tests/core/db/main.py index 0a94c0d2b..fda62ac2f 100644 --- a/tests/core/db/main.py +++ b/tests/core/db/main.py @@ -399,7 +399,7 @@ try: if job.plugin_id in pro_plugin_ids: continue - if not job.success: + if job.name != "download-pro-plugins" and not job.success: print( f"❌ The job {job.name} (plugin_id: {job.plugin_id}) is in the database but failed, exiting ...", flush=True,