Skip to content

Commit

Permalink
fix(snapshot_tests): include IrrelevantElements
Browse files Browse the repository at this point in the history
  • Loading branch information
Elijas committed Dec 22, 2023
1 parent bd19051 commit 736ae1a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/snapshot/manage_snapshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,10 @@ def manage_snapshots(
html_content = f.read()

execution_time_start = time.perf_counter()
elements = Edgar10QParser().parse(html_content)
elements = Edgar10QParser().parse(
html_content,
include_irrelevant_elements=True,
)
execution_time_in_seconds = time.perf_counter() - execution_time_start

if action == "update":
Expand Down

0 comments on commit 736ae1a

Please sign in to comment.