Skip to content

Commit

Permalink
Fix syntax and remove skip on test_performance_graph_option_output
Browse files Browse the repository at this point in the history
  • Loading branch information
sandcha committed Nov 25, 2024
1 parent 60387e6 commit 7076ff3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/tools/test_runner/test_yaml_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,13 @@ def test_extensions_order() -> None:
) # extensions order is ignored in cache


@pytest.mark.skip(reason="Deprecated node constructor")
def test_performance_graph_option_output() -> None:
testFile = TestFile.from_parent(parent=None)
test = {
"input": {"salary": {"2017-01": 2000}},
"output": {"salary": {"2017-01": 2000}},
}
test_item = TestItem(test)
test_item = TestItem.from_parent(parent=testFile, test=test)
test_item.options = {"performance_graph": True}

paths = ["./performance_graph.html"]
Expand Down

0 comments on commit 7076ff3

Please sign in to comment.