Skip to content

Commit 87cac76

Browse files
author
Clement Champetier
committed
pyTest: launch testThreadEnv with an invert node
* The problems seems to appear with the blur node... * Issue #512
1 parent 73dc767 commit 87cac76

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

libraries/tuttle/pyTest/compute/testThreadEnv.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
from pyTuttle import tuttle
2-
from nose.tools import nottest
32

43

54
def setUp():
65
tuttle.core().preload(False)
76

87

9-
@nottest
108
def testThreadEnv():
119
g = tuttle.Graph()
1210
pngRead = g.createNode("tuttle.checkerboard", size=[50,50])
13-
blur = g.createNode('tuttle.blur')
11+
blur = g.createNode('tuttle.invert')
1412
pngW = g.createNode('tuttle.pngwriter', ".tests/output-###.png")
1513
g.connect( [pngRead, blur, pngW] )
1614

0 commit comments

Comments
 (0)