Skip to content

Commit 7abe617

Browse files
committed
Fix CI
1 parent 88f490f commit 7abe617

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

tests/test_ast.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ def test_pipeline_with_int_param(self):
153153
"connection": None,
154154
"help": "Param help",
155155
"required": True,
156+
"directory": None,
156157
}
157158
],
158159
"timeout": None,
@@ -196,6 +197,7 @@ def test_pipeline_with_multiple_param(self):
196197
"connection": None,
197198
"help": "Param help",
198199
"required": True,
200+
"directory": None,
199201
}
200202
],
201203
"timeout": None,
@@ -240,6 +242,7 @@ def test_pipeline_with_dataset(self):
240242
"connection": None,
241243
"help": "Dataset",
242244
"required": False,
245+
"directory": None,
243246
}
244247
],
245248
"timeout": None,
@@ -283,6 +286,7 @@ def test_pipeline_with_choices(self):
283286
"connection": None,
284287
"help": "Param help",
285288
"required": True,
289+
"directory": None,
286290
}
287291
],
288292
"timeout": None,
@@ -354,6 +358,7 @@ def test_pipeline_with_bool(self):
354358
"connection": None,
355359
"help": "Param help",
356360
"required": True,
361+
"directory": None,
357362
}
358363
],
359364
"timeout": None,
@@ -398,6 +403,7 @@ def test_pipeline_with_multiple_parameters(self):
398403
"connection": None,
399404
"help": "Param help",
400405
"required": True,
406+
"directory": None,
401407
},
402408
{
403409
"choices": ["a", "b"],
@@ -410,6 +416,7 @@ def test_pipeline_with_multiple_parameters(self):
410416
"connection": None,
411417
"help": "Param help 2",
412418
"required": True,
419+
"directory": None,
413420
},
414421
],
415422
"timeout": None,
@@ -476,6 +483,7 @@ def test_pipeline_with_connection_parameter_for_dhis2(self):
476483
"connection": None,
477484
"help": None,
478485
"required": True,
486+
"directory": None,
479487
},
480488
{
481489
"code": "data_element_ids",
@@ -488,6 +496,7 @@ def test_pipeline_with_connection_parameter_for_dhis2(self):
488496
"choices": None,
489497
"help": None,
490498
"required": True,
499+
"directory": None,
491500
},
492501
],
493502
"timeout": None,
@@ -536,6 +545,7 @@ def test_pipeline_with_connection_parameter_for_iaso(self):
536545
"connection": None,
537546
"help": None,
538547
"required": True,
548+
"directory": None,
539549
},
540550
{
541551
"code": "org_units",
@@ -548,6 +558,7 @@ def test_pipeline_with_connection_parameter_for_iaso(self):
548558
"choices": None,
549559
"help": None,
550560
"required": True,
561+
"directory": None,
551562
},
552563
{
553564
"code": "projects",
@@ -560,6 +571,7 @@ def test_pipeline_with_connection_parameter_for_iaso(self):
560571
"choices": None,
561572
"help": None,
562573
"required": True,
574+
"directory": None,
563575
},
564576
{
565577
"code": "forms",
@@ -572,6 +584,7 @@ def test_pipeline_with_connection_parameter_for_iaso(self):
572584
"choices": None,
573585
"help": None,
574586
"required": True,
587+
"directory": None,
575588
},
576589
],
577590
"timeout": None,

0 commit comments

Comments
 (0)