Skip testing pro plugins in main.py

This commit is contained in:
Théophile Diot 2024-03-05 11:51:06 +00:00
parent 9ef2cf8c6c
commit 097b8979c9
No known key found for this signature in database
GPG key ID: 248FEA4BAE400D06

View file

@ -323,6 +323,9 @@ try:
)
for plugin in plugins:
if plugin.type == "pro": # ? We do not test the pro plugins in here
continue
if plugin.type == "core" and plugin.id in core_plugins:
current_plugin = core_plugins
elif plugin.type == "external" and plugin.id in external_plugins: