Skip to content

Commit

Permalink
Add prints to debug failing test in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
153957 committed Aug 19, 2024
1 parent 207b56c commit c0bd223
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions publicdb/histograms/esd.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,8 @@ def copy_node_to_esd_file_for_summary(summary, node):

with tables.open_file(esd_path, 'a') as esd_data:
esd_group = get_or_create_station_node(esd_data, summary.station)
print(esd_group)

Check failure on line 278 in publicdb/histograms/esd.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (T201)

publicdb/histograms/esd.py:278:9: T201 `print` found
print(node)

Check failure on line 279 in publicdb/histograms/esd.py

View workflow job for this annotation

GitHub Actions / lint

Ruff (T201)

publicdb/histograms/esd.py:279:9: T201 `print` found
node.copy(esd_group, createparents=True, overwrite=True)


Expand Down

0 comments on commit c0bd223

Please sign in to comment.