Skip to content

Commit 294c357

Browse files
committed
import debug
1 parent e5d598e commit 294c357

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ jobs:
257257
run: ./.github/workflows/main/installRenderMan.py --version 26.3 --outputFormat "RMANTREE={rmanTree}" >> $GITHUB_ENV
258258
shell: bash
259259
env:
260+
LD_DEBUG: files
260261
RENDERMAN_DOWNLOAD_USER: ${{ secrets.RENDERMAN_DOWNLOAD_USER }}
261262
RENDERMAN_DOWNLOAD_PASSWORD: ${{ secrets.RENDERMAN_DOWNLOAD_PASSWORD }}
262263
RENDERMAN_LICENSE_PASSPHRASE: ${{ secrets.RENDERMAN_LICENSE_PASSPHRASE }}

python/IECoreRenderManTest/RendererTest.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,37 @@
3434
#
3535
##########################################################################
3636

37+
print( "importing native modules" )
38+
3739
import math
3840
import os
3941
import time
4042
import unittest
4143

44+
print( "importing imath" )
45+
4246
import imath
4347

48+
print( "importing openimageio" )
49+
4450
import OpenImageIO
4551

52+
print( "importing cortex" )
53+
4654
import IECore
4755
import IECoreImage
4856
import IECoreScene
57+
58+
print( "importing IECoreRenderMan" )
59+
60+
import IECoreRenderMan
61+
62+
print( "importing IECoreRenderManTest" )
63+
4964
import IECoreRenderManTest
5065

66+
print( "importing Gaffer bits" )
67+
5168
import GafferTest
5269
import GafferScene
5370

0 commit comments

Comments
 (0)