Skip to content

Commit

Permalink
removing plotting to screen in pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
erdogant committed Oct 23, 2024
1 parent 30e90d3 commit c6c0c54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bnlearn/tests/test_bnlearn.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ def test_edge_properties():
assert edge_properties[('A', 'D')].get('color')
assert edge_properties[('A', 'D')].get('weight')
# Make plot
assert bn.plot(model, edge_properties=edge_properties, interactive=False)
assert bn.plot(model, interactive=False)
# assert bn.plot(model, edge_properties=edge_properties, interactive=False)
# assert bn.plot(model, interactive=False)

edges = [('A', 'B'), ('A', 'C'), ('A', 'D')]
# Create DAG and store in model
Expand Down

0 comments on commit c6c0c54

Please sign in to comment.