Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahf committed Feb 16, 2020
2 parents 4aee306 + ddbdf07 commit 15a1ddb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions nuke/cryptomatte_utilities_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1735,7 +1735,10 @@ class or test method.
failfast stop after a failure, and skip cleanup of the nodes that were created.
"""
import nuke
import fnmatch
import platform
import cryptomatte_utilities as cu

def find_test_method(traceback):
""" Finds first "test*" function in traceback called. """
Expand Down Expand Up @@ -1767,6 +1770,10 @@ def find_test_method(traceback):

reset_skip_cleanup_on_failure()

print "---------"
print 'Cryptomatte %s, Nuke %s, %s' % (cu.__version__,
nuke.NUKE_VERSION_STRING,
platform.platform())
print "---------"
for test_instance, traceback in result.failures:
print "Failed: %s.%s" % (type(test_instance).__name__, find_test_method(traceback))
Expand Down

0 comments on commit 15a1ddb

Please sign in to comment.