We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73784a1 commit 8c41167Copy full SHA for 8c41167
1 file changed
test.py
@@ -71,9 +71,11 @@ def test(name, inputs):
71
72
73
def runTest(name, args, extraCallInputs, extraModelInputs):
74
- inputs = all_tests.get(name)
75
- if not inputs.get("callInputs", None):
76
- inputs.update({"callInputs": {}})
+ origInputs = all_tests.get(name)
+ inputs = {
+ "modelInputs": origInputs.get("modelInputs", {}).copy(),
77
+ "callInputs": origInputs.get("callInputs", {}).copy(),
78
+ }
79
inputs.get("callInputs").update(extraCallInputs)
80
inputs.get("modelInputs").update(extraModelInputs)
81
0 commit comments