File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 48
48
pytest -v test_setup.py --junitxml $GITHUB_WORKSPACE/ci/scripts/tests/test-results.xml
49
49
ls $GITHUB_WORKSPACE/ci/scripts/tests/testdata/RUNDIR/EXPDIR/C48_ATM
50
50
ls $GITHUB_WORKSPACE/ci/scripts/tests/testdata/RUNDIR/EXPDIR/C48_ATM/config.base
51
- cat $GITHUB_WORKSPACE/ci/scripts/tests/testdata/RUNDIR/EXPDIR/C48_ATM/config.base
52
51
grep EXPDIR $GITHUB_WORKSPACE/ci/scripts/tests/testdata/RUNDIR/EXPDIR/C48_ATM/config.base
53
52
${GITHUB_WORKSPACE}/workflow/setup_xml.py $GITHUB_WORKSPACE/ci/scripts/tests/testdata/RUNDIR/EXPDIR/C48_ATM
54
53
Original file line number Diff line number Diff line change @@ -57,10 +57,14 @@ def main(*argv):
57
57
'taskthrottle' : user_inputs .taskthrottle ,
58
58
'verbosity' : user_inputs .verbosity }
59
59
60
+ print ("expdir:" ,user_inputs .expdir )
60
61
cfg = Configuration (user_inputs .expdir )
61
62
62
63
base = cfg .parse_config ('config.base' )
63
- print ("base Dict" , base )
64
+ if 'EXPDIR' in base :
65
+ print ("base EXPDIR" , base ['EXPDIR' ])
66
+ else :
67
+ print ("base EXPDIR is not in base" )
64
68
65
69
check_expdir (user_inputs .expdir , base ['EXPDIR' ])
66
70
You can’t perform that action at this time.
0 commit comments