Skip to content

Commit

Permalink
fix(interpreted functions): problem in test_pop was missing implement…
Browse files Browse the repository at this point in the history
…ation for some walkers - added skip for IFs
  • Loading branch information
Samuel Gobbi committed Sep 24, 2024
1 parent f883ab7 commit 9e54004
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions unified_planning/test/test_partial_order_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ def test_all(self):
assert validator is not None
for example in self.problems.values():
problem, plans = example.problem, example.valid_plans
if (
problem.kind.has_interpreted_functions_in_conditions()
): # plan translation from sequential to partial order has not been implemented for IF
continue
plan = plans[0] if plans else None
if validator.supports(problem.kind):
self.assertTrue(isinstance(plan, up.plans.SequentialPlan))
Expand Down

0 comments on commit 9e54004

Please sign in to comment.