Meshroom/tests/test_plugin_nodes.py
Matthieu Hog 370d1346b4 moved plugin logic to nodeDesc instead of class
added build badge

changes for uid renaming

added back menu after update

fix for existing symlink
2024-10-10 13:38:47 +02:00

18 lines
436 B
Python

import logging
import os
from meshroom.core.graph import Graph
logging = logging.getLogger(__name__)
def test_pluginNodes():
#Dont run the tests in the CI as we are unable to install plugins beforehand
if "CI" in os.environ:
return
graph = Graph('')
graph.addNewNode('DummyCondaNode')
graph.addNewNode('DummyDockerNode')
graph.addNewNode('DummyPipNode')
graph.addNewNode('DummyVenvNode')