File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 16
16
17
17
import os
18
18
from pathlib import Path
19
+ # Good old print debug
20
+ import pprint
21
+ import sys
19
22
20
23
import nox
21
24
57
60
'envs' : {},
58
61
}
59
62
63
+ pp = pprint .PrettyPrinter (indent = 4 )
64
+
60
65
try :
66
+ print ("sys.path" )
67
+ pp .pprint (sys .path )
61
68
from noxfile_config import TEST_CONFIG_OVERRIDE
69
+ import noxfile_config
70
+ print ('noxfile_config.__file__' )
71
+ print (noxfile_config .__file__ )
62
72
except ImportError :
73
+ print ('importing noxfile_config failed' )
63
74
TEST_CONFIG_OVERRIDE = {}
64
75
65
76
# Update the TEST_CONFIG with the user supplied values.
66
77
TEST_CONFIG .update (TEST_CONFIG_OVERRIDE )
67
78
68
- # Good old print debug
69
- import pprint
70
- pp = pprint .PrettyPrinter (indent = 4 )
71
79
print ("TEST_CONFIG:" )
72
80
pp .pprint (TEST_CONFIG )
73
81
You can’t perform that action at this time.
0 commit comments