Skip to content

Commit

Permalink
pyTest: launch testThreadEnv with an invert node
Browse files Browse the repository at this point in the history
* The problems seems to appear with the blur node...
* Issue tuttleofx#512
  • Loading branch information
Clement Champetier committed Feb 9, 2016
1 parent 73dc767 commit 87cac76
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions libraries/tuttle/pyTest/compute/testThreadEnv.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
from pyTuttle import tuttle
from nose.tools import nottest


def setUp():
tuttle.core().preload(False)


@nottest
def testThreadEnv():
g = tuttle.Graph()
pngRead = g.createNode("tuttle.checkerboard", size=[50,50])
blur = g.createNode('tuttle.blur')
blur = g.createNode('tuttle.invert')
pngW = g.createNode('tuttle.pngwriter', ".tests/output-###.png")
g.connect( [pngRead, blur, pngW] )

Expand Down

0 comments on commit 87cac76

Please sign in to comment.