mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-04 04:36:58 +02:00
added build badge changes for uid renaming added back menu after update fix for existing symlink
18 lines
436 B
Python
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')
|
|
|
|
|