1
1
from pythonwhat .State import State
2
2
from pythonwhat .local import run_exercise
3
- from pythonwhat .sct_syntax import Ex
3
+ from pythonwhat .sct_syntax import Ex , get_chains
4
4
from pythonwhat .utils import check_str , check_process
5
5
from protowhat .Reporter import Reporter
6
6
from protowhat .failure import TestFail , InstructorError
@@ -37,7 +37,6 @@ def test_exercise(
37
37
"""
38
38
39
39
reporter = Reporter (errors = [error ] if error else [])
40
- tree , sct_cntxt = prep_context ()
41
40
42
41
try :
43
42
state = State (
@@ -52,6 +51,7 @@ def test_exercise(
52
51
)
53
52
54
53
State .root_state = state
54
+ tree , sct_cntxt = prep_context ()
55
55
56
56
# Actually execute SCTs
57
57
exec (sct , sct_cntxt )
@@ -94,7 +94,6 @@ def prep_context():
94
94
"from inspect import Parameter as param" ,
95
95
"from pythonwhat.signatures import sig_from_params, sig_from_obj" ,
96
96
"from pythonwhat.State import set_converter" ,
97
- "from pythonwhat.sct_syntax import LazyChain as F, Ex" ,
98
97
]
99
98
[exec (line , None , cntxt ) for line in imports ]
100
99
@@ -106,6 +105,7 @@ def prep_context():
106
105
tree = None
107
106
108
107
cntxt .update (v2_check_functions )
108
+ cntxt .update (get_chains ())
109
109
return tree , cntxt
110
110
111
111
0 commit comments